:root {
  --deep-ink: #0f172a;
  --warm-paper: #faf7ef;
  --honest-black: #050505;
  --near-black: #0d0d0b;
  --graphite: #667085;
  --muted-brass: #b08d57;
  --acid-gold: #c8b84a;
  --signal-green: #2e8b57;
  --risk-amber: #d89b32;
  --stop-red: #b42318;
  --display: "Manrope", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --serif: var(--display);
  --sans: var(--body);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--honest-black);
  color: var(--warm-paper);
  font-family: var(--body);
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

::selection {
  background: var(--muted-brass);
  color: var(--honest-black);
}

::-moz-selection {
  background: var(--muted-brass);
  color: var(--honest-black);
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.display-heading,
.display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

p,
li,
.body {
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.7;
}

.system-label,
code,
.tag,
.status {
  background: rgba(176, 141, 87, 0.08);
  border-radius: 3px;
  color: var(--muted-brass);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding: 2px 8px;
  text-transform: lowercase;
}

.cursor {
  background: var(--warm-paper);
  border-radius: 999px;
  height: 10px;
  left: 0;
  mix-blend-mode: difference;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: height 100ms ease, opacity 100ms ease, transform 100ms ease, width 100ms ease;
  width: 10px;
  z-index: 9999;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-heading {
  height: 60px;
  width: 60px;
}

.cursor.is-visible.is-heading {
  opacity: 0.15;
}

.cursor.is-link {
  height: 4px;
  width: 4px;
}

.cursor.is-suppressed {
  opacity: 0;
}

.cursor.is-down {
  transform: translate(-50%, -50%) scaleX(1.4) scaleY(0.7);
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cursor-hidden .cursor {
  display: none;
}

.scroll-progress {
  background: var(--muted-brass);
  height: 2px;
  left: 0;
  position: fixed;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
  z-index: 10000;
}

.flash {
  background: var(--warm-paper);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: 80;
}

.law-wash {
  background: rgba(180, 35, 24, 0.06);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: 81;
}

.site-nav {
  align-items: center;
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 24px clamp(22px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 300ms ease, border-color 300ms ease;
  z-index: 60;
}

.site-nav.is-solid {
  background: rgba(13, 13, 11, 0.92);
  border-bottom: 1px solid rgba(250, 247, 239, 0.08);
}

.monogram {
  align-items: center;
  border: 1px solid rgba(250, 247, 239, 0.28);
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--display);
  font-size: 22px;
  height: 46px;
  justify-content: center;
  width: 46px;
}

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

.brand-wordmark {
  color: var(--warm-paper);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-lockup:focus-visible {
  outline: 2px solid var(--acid-gold);
  outline-offset: 4px;
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(250, 247, 239, 0.24);
  border-radius: 999px;
  color: var(--warm-paper);
  display: none;
  height: 44px;
  justify-content: center;
  position: relative;
  width: 44px;
}

.nav-toggle span {
  background: currentColor;
  height: 1px;
  left: 13px;
  position: absolute;
  transition: transform 220ms ease;
  width: 18px;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.site-nav.is-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

.site-nav.is-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
}

.nav-links a:not(.nav-demo) {
  color: rgba(250, 247, 239, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  text-transform: uppercase;
}

.nav-links a:not(.nav-demo)::after {
  background: var(--acid-gold);
  bottom: -8px;
  clip-path: inset(0 100% 0 0);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: clip-path 300ms ease;
  width: 100%;
}

.nav-links a:not(.nav-demo):hover::after,
.nav-links a:not(.nav-demo):focus-visible::after {
  clip-path: inset(0);
}

.nav-demo {
  border: 1px solid rgba(250, 247, 239, 0.28);
  border-radius: 999px;
  color: var(--warm-paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 12px 18px;
  text-transform: uppercase;
}

.hero {
  align-items: center;
  background: var(--deep-ink);
  display: grid;
  gap: clamp(28px, 5vw, 86px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  min-height: 100vh;
  overflow: hidden;
  padding: 120px clamp(22px, 7vw, 120px);
  position: relative;
}

#hero-particles,
.hero-vignette {
  inset: 0;
  position: absolute;
}

#hero-particles {
  height: 100%;
  width: 100%;
  z-index: 0;
}

.hero-vignette {
  background:
    radial-gradient(circle at 70% 50%, rgba(200, 184, 74, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.78) 44%, rgba(5, 5, 5, 0.54) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 850px;
  position: relative;
  z-index: 2;
}

.hero-trace-signature {
  align-self: center;
  height: min(58vh, 560px);
  justify-self: end;
  min-height: 390px;
  opacity: 0.92;
  position: relative;
  width: min(34vw, 460px);
  z-index: 2;
}

.hero-trace-signature::before {
  background:
    radial-gradient(circle at 50% 46%, rgba(176, 141, 87, 0.16), transparent 33%),
    radial-gradient(circle at 70% 18%, rgba(46, 139, 87, 0.14), transparent 24%);
  border: 1px solid rgba(250, 247, 239, 0.08);
  border-radius: 50%;
  content: "";
  inset: 8% 2% 10%;
  position: absolute;
}

.trace-rail {
  background: linear-gradient(180deg, transparent, rgba(176, 141, 87, 0.72) 16%, rgba(46, 139, 87, 0.76) 72%, transparent);
  inset: 7% auto 10% 50%;
  position: absolute;
  width: 1px;
}

.trace-rail::before,
.trace-rail::after {
  background: linear-gradient(90deg, transparent, rgba(250, 247, 239, 0.22), transparent);
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: min(34vw, 410px);
}

.trace-rail::before {
  top: 32%;
}

.trace-rail::after {
  top: 63%;
}

.trace-node {
  background: var(--warm-paper);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(250, 247, 239, 0.06);
  height: 9px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 9px;
}

.trace-node--draft {
  top: 12%;
}

.trace-node--risk {
  background: var(--risk-amber);
  box-shadow: 0 0 0 9px rgba(216, 155, 50, 0.1);
  top: 34%;
}

.trace-node--approved {
  background: var(--signal-green);
  box-shadow: 0 0 0 11px rgba(46, 139, 87, 0.14);
  top: 57%;
}

.trace-node--saved {
  background: var(--muted-brass);
  top: 82%;
}

.trace-gate {
  align-content: center;
  background:
    radial-gradient(circle, rgba(250, 247, 239, 0.13), rgba(250, 247, 239, 0.02) 62%),
    rgba(5, 5, 5, 0.16);
  border: 1px solid rgba(176, 141, 87, 0.42);
  border-radius: 999px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(250, 247, 239, 0.06);
  color: var(--warm-paper);
  display: grid;
  height: 154px;
  justify-items: center;
  left: 50%;
  position: absolute;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 154px;
}

.trace-gate::before,
.trace-gate::after {
  background: rgba(176, 141, 87, 0.34);
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  width: 86px;
}

.trace-gate::before {
  right: 100%;
}

.trace-gate::after {
  left: 100%;
}

.trace-gate span {
  color: rgba(250, 247, 239, 0.54);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trace-gate strong {
  color: var(--signal-green);
  font-family: var(--display);
  font-size: 54px;
  line-height: 0.88;
}

.trace-caption {
  bottom: 7%;
  color: rgba(250, 247, 239, 0.54);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.45;
  margin: 0;
  max-width: 230px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  color: var(--acid-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--warm-paper);
  font-size: clamp(64px, 7vw, 96px);
  line-height: 1;
  margin: 0;
  max-width: 1120px;
}

.hero-purpose {
  color: rgba(250, 247, 239, 0.82);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  margin: 28px 0 0;
  max-width: 620px;
}

.hero-purpose strong {
  color: var(--warm-paper);
  font-weight: 800;
}

.about-app {
  padding: clamp(72px, 12vh, 140px) clamp(22px, 5vw, 72px);
  position: relative;
  z-index: 2;
}

.about-app-inner {
  margin: 0 auto;
  max-width: 920px;
}

.about-app-title {
  color: var(--warm-paper);
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 14px 0 0;
}

.about-app-lead {
  color: rgba(250, 247, 239, 0.82);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  margin: 26px 0 0;
  max-width: 760px;
}

.about-app-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.about-app-list li {
  border-left: 2px solid var(--acid-gold);
  color: rgba(250, 247, 239, 0.74);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.5;
  padding: 2px 0 2px 18px;
}

.about-app-list strong {
  color: var(--warm-paper);
  font-weight: 700;
}

.hero h1 > span,
.hero-subline > span {
  display: block;
}

.hero-subline {
  color: rgba(245, 240, 232, 0.6);
  font-weight: 400;
}

.hero-subline .char,
.chaos-sentence .char,
.enemy-result .char {
  display: inline-block;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 42px;
}

.button,
.demo-form button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  position: relative;
  text-transform: uppercase;
  transform: translate3d(0, 0, 0);
  transition: box-shadow 200ms ease, text-indent 200ms ease, transform 200ms ease;
  overflow: hidden;
}

.button-primary::before,
.demo-form button::before {
  content: "→";
  left: 17px;
  opacity: 0;
  position: absolute;
  transform: translateX(-8px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.button-primary:hover,
.demo-form button:hover {
  box-shadow: inset 0 0 20px rgba(176, 141, 87, 0.15);
  text-indent: 1px;
}

.button-primary:hover::before,
.demo-form button:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.button:focus-visible,
.demo-form button:focus-visible,
.demo-form input:focus-visible,
.monogram:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid var(--acid-gold);
  outline-offset: 4px;
}

.button-primary {
  background: var(--acid-gold);
  color: var(--honest-black);
}

.button-outline {
  border: 1px solid rgba(250, 247, 239, 0.48);
  color: var(--warm-paper);
}

.act {
  height: var(--act-height, 300vh);
  position: relative;
}

.pin-stage {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
  overflow: hidden;
  padding: clamp(56px, 7vw, 112px);
  position: relative;
}

.act-chaos {
  --act-height: 250vh;
}

.chaos-stage {
  background: var(--near-black);
  transition: background-color 300ms ease;
}

.chaos-columns {
  inset: 0;
  opacity: 0.78;
  position: absolute;
}

.message-column {
  color: rgba(250, 247, 239, 0.4);
  font-size: 12px;
  font-weight: 500;
  left: 12%;
  line-height: 1.2;
  max-width: 280px;
  position: absolute;
  top: 8%;
  white-space: pre-wrap;
  will-change: transform;
}

.column-b {
  left: 42%;
  max-width: 320px;
  top: -10%;
}

.column-c {
  left: 72%;
  max-width: 260px;
  top: 14%;
}

.chaos-sentence {
  color: var(--warm-paper);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  margin: 0;
  max-width: 780px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.chaos-sentence .char {
  opacity: 0;
}

.act-enemy {
  --act-height: 200vh;
}

.enemy-stage {
  background: var(--honest-black);
  overflow-x: hidden;
}

.enemy-words {
  color: var(--warm-paper);
  display: grid;
  gap: 0;
  text-align: center;
}

.enemy-words span {
  display: block;
  font-family: var(--display);
  font-size: clamp(90px, 13vw, 180px);
  font-weight: 800;
  line-height: 0.82;
  will-change: transform;
}

.enemy-result {
  color: rgba(250, 247, 239, 0.82);
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 500;
  left: 50%;
  margin: 0;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}

.enemy-result .char {
  display: inline-block;
}

.act-laws {
  --act-height: 400vh;
}

.laws-stage {
  align-items: flex-start;
  background: #1a2e1a;
  flex-direction: column;
}

.laws-stack {
  display: grid;
  gap: 34px;
  width: min(100%, 1040px);
}

.law {
  margin: 0;
  opacity: 0;
  transform: translateY(28px);
}

.law-one,
.law-two,
.law-four {
  color: rgba(250, 247, 239, 0.84);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
}

.law-two {
  align-items: center;
  display: flex;
  gap: 22px;
}

.law-two .risk-line {
  background: var(--risk-amber);
  display: block;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  width: clamp(80px, 18vw, 260px);
}

.risk-dot {
  border-radius: 999px;
  display: inline-block;
  height: 10px;
  margin-right: 14px;
  width: 10px;
}

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

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

.law-three {
  color: var(--warm-paper);
  font-size: clamp(74px, 12vw, 168px);
  line-height: 0.84;
}

.law-three .stop-label {
  color: var(--stop-red);
  display: table;
  margin-top: 18px;
}

.terminal-cursor {
  animation: blink 900ms steps(1) infinite;
  background: var(--acid-gold);
  display: inline-block;
  height: 0.92em;
  margin-left: 10px;
  transform: translateY(0.12em);
  width: 0.08em;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.act-proof {
  background: var(--warm-paper);
  color: var(--honest-black);
  overflow: hidden;
  padding: 130px 0 150px;
}

.section-intro {
  margin: 0 auto 64px;
  padding: 0 clamp(22px, 7vw, 120px);
  width: min(100%, 1440px);
}

.section-intro h2 {
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  margin: 0;
  max-width: 880px;
}

.proof-viewport {
  overflow: visible;
}

.proof-track {
  display: flex;
  gap: 22px;
  padding: 0 clamp(22px, 7vw, 120px);
  width: max-content;
}

.proof-card {
  background: var(--near-black);
  border-left: 2px solid var(--acid-gold);
  color: var(--warm-paper);
  flex: 0 0 min(76vw, 440px);
  min-height: 360px;
  padding: 34px;
  transform: translateX(180px);
}

.proof-card .status {
  margin-bottom: 24px;
}

.state-graphite {
  border-left: 2px solid var(--graphite);
  color: var(--graphite);
}

.state-medium {
  border-left: 2px solid var(--risk-amber);
  color: var(--risk-amber);
}

.state-critical {
  border-left: 2px solid var(--stop-red);
  color: var(--stop-red);
}

.state-critical::before {
  animation: riskPulse 2s infinite;
  background: var(--stop-red);
  border-radius: 999px;
  content: "";
  height: 7px;
  margin-right: 7px;
  width: 7px;
}

.state-traced {
  border-left: 2px solid var(--signal-green);
  color: var(--signal-green);
}

.state-traced::before {
  content: "✓";
  margin-right: 7px;
}

@keyframes riskPulse {
  50% {
    transform: scale(1.15);
  }
}

.proof-card h3 {
  font-family: var(--display);
  font-size: 44px;
  line-height: 0.96;
  margin: 0 0 28px;
}

.proof-card p {
  color: rgba(250, 247, 239, 0.68);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.proof-outcomes {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px auto 0;
  padding: 0 clamp(22px, 7vw, 120px);
  width: min(100%, 1440px);
}

.proof-outcomes article {
  background: rgba(5, 5, 5, 0.04);
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-left: 2px solid var(--muted-brass);
  border-radius: 10px;
  padding: 18px;
  position: relative;
}

.proof-outcomes article::after {
  background: var(--muted-brass);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(176, 141, 87, 0.1);
  content: "";
  height: 7px;
  position: absolute;
  right: 18px;
  top: 20px;
  width: 7px;
}

.proof-outcomes article:nth-child(1) {
  border-left-color: var(--risk-amber);
}

.proof-outcomes article:nth-child(1)::after {
  background: var(--risk-amber);
  box-shadow: 0 0 0 6px rgba(216, 155, 50, 0.1);
}

.proof-outcomes article:nth-child(2) {
  border-left-color: var(--signal-green);
}

.proof-outcomes article:nth-child(2)::after {
  background: var(--signal-green);
  box-shadow: 0 0 0 6px rgba(46, 139, 87, 0.1);
}

.proof-outcomes span {
  color: var(--muted-brass);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.proof-outcomes strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1;
}

.proof-outcomes p {
  color: rgba(5, 5, 5, 0.66);
  font-size: 14px;
  line-height: 1.45;
  margin: 12px 0 0;
}

.proof-outcomes em {
  color: var(--signal-green);
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: -4px 0 14px;
  text-transform: uppercase;
}

.act-oath {
  --act-height: 300vh;
}

.oath-stage {
  align-items: flex-start;
  background: var(--honest-black);
  flex-direction: column;
}

.oath-lines {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  max-width: 1120px;
}

.oath-lines p {
  color: var(--warm-paper);
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1;
  margin: 0;
  opacity: 0;
  transform: translateY(24px);
}

.oath-tagline {
  color: var(--acid-gold);
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 72px);
  line-height: 0.94;
  margin: 56px 0 0;
  max-width: 880px;
  opacity: 0;
}

.oath-cta {
  margin-top: 34px;
  opacity: 0;
}

.site-footer {
  align-items: end;
  background: var(--acid-gold);
  color: var(--honest-black);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  padding: clamp(60px, 8vw, 120px) clamp(22px, 7vw, 120px);
}

.footer-mark {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.site-footer h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.94;
  margin: 0;
  max-width: 720px;
}

.demo-form {
  display: grid;
  gap: 14px;
}

.demo-form label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-form div {
  background: transparent;
  border: 0;
  border-radius: 999px;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
  padding: 0;
}

.demo-form input {
  background: transparent;
  border: 1px solid var(--honest-black);
  border-radius: 999px;
  color: var(--honest-black);
  min-height: 48px;
  padding: 0 16px;
  width: 100%;
}

.demo-form input:focus {
  border-color: var(--honest-black);
  box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.1);
  outline: none;
}

.demo-form input::placeholder {
  color: rgba(5, 5, 5, 0.52);
}

.demo-form button {
  background: var(--honest-black);
  border: 0;
  color: var(--warm-paper);
  min-height: 48px;
}

.demo-form button:hover {
  background: var(--deep-ink);
}

.form-note {
  color: rgba(5, 5, 5, 0.72);
  font-size: 13px;
  margin: 0;
  min-height: 20px;
}

[data-magnetic] {
  will-change: transform;
}

.hero-subline .char,
.enemy-result .char,
.chaos-sentence .char {
  will-change: opacity, transform;
}

@media (max-width: 900px) {
  .cursor {
    display: none;
  }

  .site-nav {
    padding: 18px 18px;
  }

  .nav-links a:not(.nav-demo) {
    display: none;
  }

  .hero {
    display: flex;
    grid-template-columns: 1fr;
    padding: 120px 22px 72px;
  }

  .hero-trace-signature {
    display: none;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .hero-actions,
  .site-footer,
  .demo-form div {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .message-column {
    left: 6%;
    max-width: 190px;
  }

  .column-b {
    left: 38%;
  }

  .column-c {
    left: 68%;
  }

  .pin-stage {
    padding: 84px 22px 42px;
  }

  .law-two {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-card {
    flex-basis: 82vw;
    min-height: 300px;
  }

  .site-footer {
    align-items: start;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .site-nav {
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .nav-demo {
    align-items: center;
    display: inline-flex;
    min-height: 44px;
  }

  .site-nav.is-open .nav-links {
    background: rgba(13, 13, 11, 0.96);
    border: 1px solid rgba(250, 247, 239, 0.12);
    border-radius: 18px;
    display: grid;
    gap: 4px;
    padding: 12px;
    position: absolute;
    right: 18px;
    top: 74px;
    width: min(220px, calc(100vw - 36px));
  }

  .site-nav.is-open .nav-links a {
    align-items: center;
    display: flex;
    min-height: 44px;
    padding: 0 12px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 5rem);
    line-height: 1;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
  }

  #hero-particles {
    display: none;
  }

  .message-column {
    font-size: 10px;
    max-width: 46vw;
  }

  .column-a {
    left: 4%;
  }

  .column-b {
    left: 50%;
  }

  .column-c {
    display: none;
  }

  .chaos-sentence {
    color: var(--warm-paper);
    font-size: max(1.4rem, 8vw);
    line-height: 1.05;
  }

  .enemy-words span {
    font-size: clamp(4rem, 18vw, 12rem);
  }

  .laws-stack {
    gap: 0;
  }

  .law {
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    width: 100%;
  }

  .law-two {
    gap: 12px;
  }

  .law-three {
    font-size: clamp(4.2rem, 18vw, 12rem);
  }

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

@media (prefers-reduced-motion: reduce) {
  .terminal-cursor {
    animation: none;
  }

  .hero-subline .char,
  .chaos-sentence .char,
  .law,
  .oath-lines p,
  .oath-tagline,
  .oath-cta,
  .enemy-result {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* FIX 2 START */
.hero h1 {
  color: var(--warm-paper);
  font-family: "Manrope", var(--display);
  font-size: clamp(2.6rem, 5.2vw, 6.5rem);
  font-weight: 800;
  hyphens: none;
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 15ch;
  word-break: keep-all;
}

.hero h1 .line-1,
.hero h1 .line-2 {
  display: block;
}

.hero h1 .line-2 {
  color: rgba(250, 247, 239, 0.62);
}

.hero-subline .word,
.chaos-sentence .word {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(2rem, 7.5vw, 3.2rem);
    line-height: 1.05;
    max-width: 100%;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-actions .button {
    border-radius: 6px;
    font-size: 15px;
    min-height: 52px;
    width: 100%;
  }
}
/* FIX 2 END */

/* FIX 2 START */
.chaos-notifications {
  inset: 0;
  opacity: 1;
  overflow: hidden;
  position: absolute;
}

.chaos-notif-column {
  max-width: 260px;
  position: absolute;
  top: -24%;
  width: 260px;
  will-change: transform;
}

.chaos-notif-column.column-a {
  left: clamp(18px, 10vw, 160px);
  max-width: 260px;
}

.chaos-notif-column.column-b {
  left: auto;
  max-width: 260px;
  right: clamp(18px, 10vw, 160px);
  top: -20%;
}

.notif-loop {
  animation: notif-up 25s linear infinite;
  display: grid;
  gap: 14px;
  will-change: transform;
}

.notif-right .notif-loop {
  animation-duration: 20s;
  animation-name: notif-down;
}

.chaos-stage:hover .notif-loop {
  animation-play-state: paused;
}

.notif-card {
  align-items: flex-start;
  background: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: flex;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  gap: 10px;
  padding: 12px 14px;
  width: 260px;
}

.notif-internal {
  background: rgba(20, 20, 20, 0.9);
  border-left: 2px solid var(--stop-red);
}

.notif-internal.amber {
  border-left-color: var(--risk-amber);
}

.notif-internal.graphite {
  border-left-color: var(--graphite);
}

.notif-icon {
  align-items: center;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 36px;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.notif-icon svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 18px;
}

.notif-icon.whatsapp {
  background: #25d366;
}

.notif-icon.whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.notif-icon.instagram {
  background: linear-gradient(135deg, #feda75 0%, #d62976 45%, #4f5bd5 100%);
}

.notif-icon.gmail {
  background: #ea4335;
}

.notif-icon.x-logo {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.notif-icon.x-logo svg {
  fill: currentColor;
  stroke: none;
}

.notif-icon.crm,
.notif-icon.task,
.notif-icon.slack,
.notif-icon.calendar,
.notif-icon.note {
  background: rgba(250, 247, 239, 0.09);
}

.notif-internal.stop .notif-icon {
  color: var(--stop-red);
}

.notif-internal.amber .notif-icon {
  color: var(--risk-amber);
}

.notif-internal.graphite .notif-icon {
  color: var(--graphite);
}

.notif-content {
  min-width: 0;
  width: 100%;
}

.notif-app {
  color: rgba(255, 255, 255, 0.5);
  float: left;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.notif-time {
  color: rgba(255, 255, 255, 0.3);
  float: right;
  font-size: 11px;
  line-height: 1.2;
}

.notif-text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  clear: both;
  color: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  font-size: 13px;
  line-height: 1.4;
  margin: 6px 0 0;
  overflow: hidden;
}

#chaos-title.chaos-sentence {
  color: var(--warm-paper);
  font-family: "Manrope", var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 0.98;
  max-width: 760px;
  text-shadow: 0 0 60px rgba(250, 247, 239, 0.4), 0 2px 40px rgba(0, 0, 0, 0.8);
  z-index: 10;
}

@keyframes notif-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes notif-down {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .chaos-notifications {
    opacity: 0.44;
  }

  .chaos-notif-column.column-a {
    left: 24px;
    max-width: calc(100vw - 48px);
    top: -16%;
    width: calc(100vw - 48px);
  }

  .chaos-notif-column.column-b {
    display: none;
  }

  .notif-card {
    border-color: rgba(255, 255, 255, 0.08);
    padding: 10px 12px;
    width: 100%;
  }

  .notif-text {
    font-size: 12px;
  }

  #chaos-title.chaos-sentence {
    background: rgba(5, 5, 5, 0.72);
    border: 1px solid rgba(250, 247, 239, 0.1);
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    font-size: clamp(1.9rem, 7vw, 2.45rem);
    max-width: calc(100vw - 44px);
    padding: 18px 16px;
  }
}
/* FIX 2 END */

/* FIX 4 START */
.proof-card {
  position: relative;
}

.proof-card::after {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 24px;
}

.proof-card-drafted {
  border-left: 3px solid var(--graphite);
}

.proof-card-drafted::after {
  background: var(--graphite);
  content: "";
  height: 8px;
  width: 8px;
}

.proof-card-flagged {
  border-left: 3px solid var(--risk-amber);
}

.proof-card-flagged::after {
  animation: pulse-amber 2s infinite;
  background: var(--risk-amber);
  content: "";
  height: 8px;
  width: 8px;
}

.proof-card-approved {
  border-left: 3px solid var(--signal-green);
}

.proof-card-approved::after {
  color: var(--signal-green);
  content: "✓";
  font-size: 14px;
  font-weight: 800;
}

.proof-card-traced {
  border-left: 3px solid var(--muted-brass);
}

.proof-card-traced::after {
  background: rgba(176, 141, 87, 0.1);
  border-radius: 3px;
  color: var(--muted-brass);
  content: "trace_saved";
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
}

.state-trace-brass {
  border-left: 2px solid var(--muted-brass);
  color: var(--muted-brass);
}

@keyframes pulse-amber {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(216, 155, 50, 0.4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(216, 155, 50, 0);
  }
}
/* FIX 4 END */

/* FIX 5 START */
.act-laws {
  --act-height: 270vh;
}

.laws-stack .law {
  color: var(--warm-paper);
  font-family: "Manrope", var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.02;
}

.laws-stack .law-three {
  font-size: clamp(4rem, 10vw, 9rem);
}

.law-index {
  color: rgba(250, 247, 239, 0.4);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 12px;
}

.law-two {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.law-stop-line {
  background: var(--stop-red);
  display: block;
  height: 1px;
  margin: 18px 0 8px;
  transform: scaleX(0);
  transform-origin: left;
  width: min(100%, 680px);
}

.blink-cursor {
  animation: blink 0.8s step-end infinite;
  background: none;
  color: var(--muted-brass);
  height: auto;
  margin-left: 6px;
  transform: none;
  width: auto;
}

.blink-cursor::before {
  content: "|";
}

@media (max-width: 768px) {
  .act-laws {
    --act-height: 280svh;
    height: var(--act-height);
  }

  .act-laws .laws-stage {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    padding-block: 86px;
  }

  .act-laws .laws-stack {
    flex: 1;
    position: relative;
  }

  .act-laws .law {
    display: flex;
    flex-direction: column;
    justify-content: center;
    inset: 0;
    position: absolute;
  }
}

@media (prefers-reduced-motion: reduce) {
  .act-laws {
    height: auto;
  }

  .act-laws .laws-stage {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .act-laws .laws-stack {
    display: grid;
    flex: none;
    gap: 42px;
  }

  .act-laws .law {
    inset: auto;
    min-height: 0;
    position: relative;
  }
}
/* FIX 5 END */

/* FIX 7 START: Existing .cursor, .cursor.is-heading, .cursor.is-link and mobile .cursor-hidden rules already satisfy the custom cursor system. No duplicate cursor CSS added. */
/* FIX 7 END */

/* FIX 8 START */
.site-footer {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 45vh;
  padding: 4rem 2rem;
  text-align: center;
}

.site-footer > div {
  max-width: 980px;
}

.site-footer h2 {
  color: var(--honest-black);
  font-family: "Manrope", var(--display);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-inline: auto;
  max-width: 980px;
  text-align: center;
}

.footer-oath {
  color: rgba(5, 5, 5, 0.4);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 2;
  margin: 22px auto 0;
  max-width: 720px;
  text-align: center;
}

.footer-legal {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.footer-legal a {
  color: rgba(250, 247, 239, 0.72);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fff;
}

.demo-form {
  max-width: 620px;
  width: min(100%, 620px);
}

.demo-form label {
  text-align: center;
}

.demo-form button {
  background: var(--honest-black);
  border: none;
  border-radius: 6px;
  color: var(--warm-paper);
  cursor: pointer;
  font-family: "Manrope", var(--display);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 40px;
}

.demo-form button:hover {
  background: var(--deep-ink);
  transform: translateY(-2px);
  transition: all 0.2s ease;
}
/* FIX 8 END */

/* FIX 9 START */
::selection {
  background: var(--muted-brass);
  color: var(--honest-black);
}

::-moz-selection {
  background: var(--muted-brass);
  color: var(--honest-black);
}

html,
body {
  overflow-x: hidden;
}

section {
  max-width: 100vw;
  overflow-x: hidden;
}

#scroll-progress {
  background: var(--muted-brass);
  height: 2px;
  left: 0;
  position: fixed;
  top: 0;
  transform: none;
  transition: width 0.1s linear;
  width: 0%;
  z-index: 10000;
}

.button-primary:hover,
.demo-form button:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(176, 141, 87, 0.15);
  transform: translateY(-2px);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.button-primary::before,
.demo-form button::before {
  content: "→";
}

.state-traced::before {
  content: "✓";
}

.system-label,
code,
.tag,
.status {
  background: rgba(176, 141, 87, 0.1);
  border-radius: 3px;
  color: var(--muted-brass);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
}

@media (max-width: 768px) {
  section {
    max-width: 100vw;
    overflow-x: hidden;
  }
}
/* FIX 9 END */

/* FIX 1 START */
body.preloader-active {
  overflow: hidden;
}

#hc-preloader {
  align-items: center;
  background: var(--honest-black);
  display: flex;
  flex-direction: column;
  gap: 24px;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 99999;
}

#preloader-svg {
  height: 80px;
  overflow: visible;
  width: 100px;
}

#preloader-tagline {
  color: rgba(250, 247, 239, 0.4);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0;
}

#hc-mark {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
}

#hc-gate {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
}
/* FIX 1 END */

/* FIX 3 START */
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

.site-nav a,
.site-nav button {
  min-height: 44px;
  min-width: 44px;
}

@media (max-width: 768px) {
  .chaos-notif-column.column-b {
    display: none !important;
  }

  .chaos-notif-column.column-a {
    left: calc(50% - min(42.5vw, 150px));
    max-width: min(85vw, 300px);
    width: min(85vw, 300px);
  }

  .notif-card {
    width: min(85vw, 300px) !important;
  }

  .act-laws .law {
    font-size: clamp(1.8rem, 7vw, 3rem) !important;
  }

  .act-laws .law-three {
    font-size: clamp(3.2rem, 15vw, 5.5rem) !important;
  }
}
/* FIX 3 END */

/* FIX 6 START */
.approval-demo {
  background: #090e0e;
  border: 1px solid var(--risk-amber);
  border-radius: 12px;
  color: var(--warm-paper);
  margin: 72px auto 0;
  max-width: 1180px;
  padding: clamp(22px, 3vw, 32px);
  position: relative;
}

.approval-demo__header {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.approval-demo__label {
  color: var(--risk-amber);
  display: inline-flex;
  margin: 0 0 16px;
}

.approval-demo__message {
  color: var(--warm-paper);
  font-family: var(--display);
  font-size: clamp(30px, 3.7vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 14px;
  max-width: 720px;
}

.approval-demo__summary {
  color: rgba(250, 247, 239, 0.65);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 680px;
}

.approval-demo__summary strong {
  color: var(--warm-paper);
  font-family: var(--mono);
  font-size: 18px;
}

.launch-platforms {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 9px;
  padding-top: 3px;
}

.launch-platform {
  align-items: center;
  background: rgba(250, 247, 239, 0.035);
  border: 1px solid rgba(250, 247, 239, 0.1);
  border-radius: 999px;
  color: rgba(250, 247, 239, 0.74);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11px;
  gap: 8px;
  letter-spacing: 0.04em;
  padding: 8px 13px;
}

.launch-platform--instagram {
  border-color: rgba(221, 42, 123, 0.36);
  color: var(--warm-paper);
}

.meta-mark {
  fill: none;
  height: 16px;
  stroke: #65a6ff;
  stroke-width: 2.3;
  width: 26px;
}

.instagram-mark {
  fill: none;
  height: 20px;
  stroke: #fff;
  stroke-width: 1.6;
  width: 20px;
}

.launch-platform .instagram-mark {
  height: 18px;
  width: 18px;
}

.launch-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(510px, 1.12fr) minmax(330px, 0.88fr);
}

.meta-builder,
.demand-monitor {
  background: #0d1314;
  border: 1px solid rgba(250, 247, 239, 0.09);
  border-radius: 9px;
  padding: 16px;
}

.meta-builder__bar,
.demand-monitor__bar {
  align-items: center;
  border-bottom: 1px solid rgba(250, 247, 239, 0.08);
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 13px;
}

.meta-builder__product {
  align-items: center;
  color: var(--warm-paper);
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 9px;
}

.launch-state {
  color: var(--risk-amber) !important;
}

.approval-demo[data-state="live"] .launch-state {
  background: rgba(46, 139, 87, 0.12) !important;
  color: var(--signal-green) !important;
}

.ads-field-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 15px;
}

.ads-structure {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.ads-tier {
  background: rgba(250, 247, 239, 0.022);
  border: 1px solid rgba(250, 247, 239, 0.075);
  border-radius: 8px;
  padding: 10px;
}

.ads-tier__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
}

.ads-tier__label {
  color: var(--warm-paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ads-tier__status {
  background: rgba(250, 247, 239, 0.035) !important;
  color: rgba(250, 247, 239, 0.5) !important;
  font-size: 9px !important;
}

.ads-tier .ads-field-grid {
  margin-bottom: 0;
}

.ads-field {
  background: rgba(250, 247, 239, 0.025);
  border: 1px solid rgba(250, 247, 239, 0.07);
  border-radius: 6px;
  min-height: 56px;
  padding: 8px 10px;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.ads-field.is-writing {
  border-color: rgba(176, 141, 87, 0.45);
}

.ads-field.is-filled {
  background: rgba(46, 139, 87, 0.055);
  border-color: rgba(46, 139, 87, 0.24);
}

.ads-field__name {
  color: rgba(250, 247, 239, 0.4);
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.ads-field__value {
  color: rgba(250, 247, 239, 0.35);
  display: block;
  font-size: 12px;
  line-height: 1.35;
}

.ads-field.is-filled .ads-field__value {
  color: var(--warm-paper);
}

.ads-field.is-writing .ads-field__value::after {
  animation: launch-cursor 650ms step-end infinite;
  color: var(--muted-brass);
  content: "|";
  margin-left: 3px;
}

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

.launch-preflight article {
  background: rgba(216, 155, 50, 0.045);
  border: 1px solid rgba(216, 155, 50, 0.15);
  border-radius: 8px;
  min-height: 104px;
  padding: 10px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.launch-preflight article span {
  color: var(--risk-amber);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.launch-preflight article strong {
  color: var(--warm-paper);
  display: block;
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 7px;
}

.launch-preflight article p {
  color: rgba(250, 247, 239, 0.52);
  font-size: 11px;
  line-height: 1.42;
  margin: 0;
}

.launch-preflight article.is-checked {
  background: rgba(46, 139, 87, 0.08);
  border-color: rgba(46, 139, 87, 0.32);
  transform: translateY(-1px);
}

.launch-preflight article.is-checked span,
.launch-preflight article.is-checked strong {
  color: var(--signal-green);
}

@keyframes launch-cursor {
  50% {
    opacity: 0;
  }
}

.instagram-ad {
  background: #090c0c;
  border: 1px solid rgba(250, 247, 239, 0.1);
  border-radius: 8px;
  margin-bottom: 17px;
  opacity: 0.54;
  overflow: hidden;
  transition: border-color 260ms ease, opacity 260ms ease;
}

.instagram-ad.is-live {
  border-color: rgba(46, 139, 87, 0.44);
  box-shadow: 0 0 0 1px rgba(46, 139, 87, 0.1), 0 0 28px rgba(46, 139, 87, 0.1);
  opacity: 1;
}

.instagram-ad__top,
.instagram-ad__bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
}

.instagram-ad__account {
  align-items: center;
  color: var(--warm-paper);
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
}

.instagram-ad__account small {
  color: rgba(250, 247, 239, 0.44);
  font-size: 10px;
  font-weight: 400;
}

.ad-live {
  border: 1px solid rgba(250, 247, 239, 0.12);
  border-radius: 999px;
  color: rgba(250, 247, 239, 0.46);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  text-transform: uppercase;
}

.instagram-ad.is-live .ad-live {
  animation: launch-live-pulse 1.5s ease-in-out infinite;
  background: rgba(46, 139, 87, 0.14);
  border-color: rgba(46, 139, 87, 0.34);
  color: var(--signal-green);
}

@keyframes launch-live-pulse {
  50% {
    box-shadow: 0 0 0 5px rgba(46, 139, 87, 0);
  }

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(46, 139, 87, 0.28);
  }
}

.instagram-ad__creative {
  background:
    linear-gradient(108deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.74)),
    radial-gradient(circle at 74% 34%, rgba(176, 141, 87, 0.54) 0 10%, transparent 10.5%),
    linear-gradient(90deg, transparent 0 60%, rgba(46, 139, 87, 0.33) 60% 61%, transparent 61%),
    #13211c;
  min-height: 154px;
  padding: 18px 14px;
  position: relative;
}

.creative-system {
  color: var(--muted-brass);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-bottom: 45px;
}

.instagram-ad__creative strong {
  color: var(--warm-paper);
  font-family: var(--display);
  display: block;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.instagram-ad__creative p {
  color: rgba(250, 247, 239, 0.58);
  font-size: 12px;
  line-height: 1.45;
  margin: 8px 0 0;
}

.instagram-ad__bottom {
  color: rgba(250, 247, 239, 0.58);
  font-size: 12px;
}

.instagram-ad__cta {
  background: rgba(250, 247, 239, 0.07);
  border-radius: 4px;
  color: var(--warm-paper);
  padding: 7px 11px;
}

.approval-demo__risk {
  color: rgba(250, 247, 239, 0.62);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 24px;
}

.approval-demo__risk span {
  color: var(--risk-amber);
  font-family: var(--mono);
  margin-right: 8px;
}

.approval-demo__actions {
  display: flex;
  gap: 12px;
}

.approval-demo__actions button {
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  padding: 10px 24px;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.btn-approve {
  background: var(--signal-green);
  border: 1px solid var(--signal-green);
  color: var(--warm-paper);
}

.btn-approve:hover {
  background: #256b44;
  transform: translateY(-1px);
}

.btn-reject {
  background: transparent;
  border: 1px solid rgba(250, 247, 239, 0.2);
  color: rgba(250, 247, 239, 0.68);
}

.btn-reject:hover {
  border-color: var(--stop-red);
  color: var(--stop-red);
  transform: translateY(-1px);
}

.btn-approve:disabled {
  cursor: default;
  opacity: 0.66;
  transform: none;
}

.demand-monitor__bar strong {
  color: var(--warm-paper);
  display: block;
  font-size: 15px;
  margin-top: 10px;
}

.signal-counter {
  color: rgba(250, 247, 239, 0.56);
  font-family: var(--mono);
  font-size: 11px;
}

.signal-counter b {
  color: var(--signal-green);
  font-size: 26px;
  font-weight: 500;
  margin-right: 5px;
}

.message-rain {
  border-bottom: 1px solid rgba(250, 247, 239, 0.08);
  height: 312px;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
}

.message-rain__idle {
  color: rgba(250, 247, 239, 0.38);
  font-size: 13px;
  line-height: 1.6;
  margin: 32px 10px 0;
  max-width: 240px;
}

.demand-message {
  align-items: flex-start;
  background: rgba(250, 247, 239, 0.055);
  border: 1px solid rgba(250, 247, 239, 0.1);
  border-radius: 11px;
  display: flex;
  gap: 9px;
  left: 0;
  opacity: 0;
  padding: 10px 11px;
  position: absolute;
  right: 0;
  transform: translateY(18px) scale(0.98);
}

.demand-message:nth-of-type(1) {
  top: 10px;
}

.demand-message:nth-of-type(2) {
  top: 82px;
}

.demand-message:nth-of-type(3) {
  top: 154px;
}

.demand-message:nth-of-type(4) {
  top: 226px;
}

.demand-message .instagram-mark {
  flex-shrink: 0;
  height: 27px;
  margin-top: 1px;
  stroke: white;
  width: 27px;
}

.instagram-message .instagram-mark rect {
  fill: #dd2a7b;
}

.whatsapp-mark {
  background: #25d366;
  border-radius: 8px;
  fill: #fff;
  flex-shrink: 0;
  height: 27px;
  padding: 4px;
  width: 27px;
}

.webchat-mark {
  align-items: center;
  background: var(--muted-brass);
  border-radius: 8px;
  color: var(--honest-black);
  display: flex;
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 10px;
  height: 27px;
  justify-content: center;
  width: 27px;
}

.demand-message span {
  color: rgba(250, 247, 239, 0.64);
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.demand-message small {
  color: rgba(250, 247, 239, 0.32);
  float: right;
  margin-left: 12px;
}

.demand-message p {
  color: var(--warm-paper);
  font-size: 12px;
  line-height: 1.38;
  margin: 0;
}

.reply-console__title {
  display: inline-flex;
  margin: 0 0 10px;
}

.reply-event {
  border-left: 2px solid var(--signal-green);
  margin-bottom: 9px;
  opacity: 0;
  padding: 4px 0 4px 10px;
  transform: translateX(12px);
}

.reply-event span {
  color: var(--signal-green);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
}

.reply-event p {
  color: rgba(250, 247, 239, 0.67);
  font-size: 12px;
  line-height: 1.45;
  margin: 4px 0 0;
}

.reply-event--stop {
  border-left-color: var(--stop-red);
}

.reply-event--stop span {
  color: var(--stop-red);
}

.approval-demo__principles {
  border-top: 1px solid rgba(250, 247, 239, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
}

.approval-demo__principles .system-label {
  background: rgba(250, 247, 239, 0.045) !important;
  color: rgba(250, 247, 239, 0.56) !important;
  font-size: 10px !important;
}

@media (max-width: 768px) {
  .approval-demo {
    margin: 48px 22px 0;
    padding: 20px;
  }

  .approval-demo__message {
    font-size: 30px;
  }

  .approval-demo__header,
  .launch-grid {
    display: block;
  }

  .launch-platforms {
    flex-direction: row;
    margin-top: 20px;
  }

  .meta-builder,
  .demand-monitor {
    padding: 13px;
  }

  .demand-monitor {
    margin-top: 14px;
  }

  .ads-field-grid {
    grid-template-columns: 1fr;
  }

  .instagram-ad__creative {
    min-height: 144px;
  }

  .approval-demo__actions {
    flex-direction: column;
  }

  .approval-demo__actions button {
    min-height: 52px;
    width: 100%;
  }

  .message-rain {
    height: 300px;
  }
}
/* FIX 6 END */

/* FIX 9 START */
@media (prefers-reduced-motion: reduce) {
  .notif-loop,
  .proof-card-flagged::after,
  .blink-cursor,
  .approval-demo[data-state="approval"] .wa-approve::after,
  .wa-approval-cue {
    animation: none !important;
  }

  .approval-demo__actions button,
  .button,
  .demo-form button {
    transition-duration: 0.01ms !important;
  }
}
/* FIX 9 END */

/* AWARDS POLISH START */
.display-heading,
h1,
h2,
h3,
.approval-demo__message,
.instagram-ad__creative strong {
  letter-spacing: 0;
}

.act-laws {
  --act-height: 195vh;
}

.laws-stage {
  justify-content: center;
}

.laws-stack {
  gap: clamp(16px, 2.3vw, 28px);
}

.laws-stack .law {
  font-size: clamp(1.75rem, 3.35vw, 3.15rem);
}

.laws-stack .law-three {
  font-size: clamp(3.6rem, 8.4vw, 8rem);
}

@media (max-width: 768px) {
  .act-laws {
    --act-height: 175svh;
    height: var(--act-height);
  }

  .act-laws .laws-stage {
    align-items: flex-start;
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    padding: 92px 22px 44px;
  }

  .act-laws .laws-stack {
    display: grid;
    flex: none;
    gap: 20px;
    position: relative;
    width: 100%;
  }

  .act-laws .law {
    border-bottom: 1px solid rgba(250, 247, 239, 0.08);
    display: block;
    inset: auto;
    min-height: 0;
    padding: 0 0 18px;
    position: relative;
  }

  .act-laws .law:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .act-laws .law,
  .act-laws .law-three {
    font-size: clamp(2rem, 8.8vw, 3rem) !important;
    line-height: 1.02;
  }

  .law-index {
    margin-bottom: 8px;
  }

  .law-stop-line {
    margin: 12px 0 8px;
  }

  .act-proof {
    padding: 88px 0 88px;
  }

  .proof-track {
    display: grid;
    gap: 16px;
    padding: 0 22px;
    width: auto;
  }

  .proof-outcomes {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .proof-card {
    flex: none;
    min-height: auto;
    padding: 24px;
    transform: none;
    width: 100%;
  }

  .proof-card h3 {
    font-size: clamp(2rem, 11vw, 2.9rem);
    line-height: 1.02;
  }

  .launch-preflight {
    grid-template-columns: 1fr;
  }

  .launch-preflight article {
    min-height: 0;
  }

  .ads-tier .ads-field-grid {
    grid-template-columns: 1fr;
  }

  .act-oath {
    --act-height: auto;
    height: auto;
  }

  .act-oath .oath-stage {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 144px 22px 88px;
  }

  .oath-lines p,
  .oath-tagline,
  .oath-cta {
    opacity: 1;
    transform: none;
  }

  .oath-lines p {
    font-size: clamp(1.65rem, 7.4vw, 2.35rem);
    line-height: 1.08;
  }

  .oath-tagline {
    font-size: clamp(2rem, 9.5vw, 3.25rem);
    margin-top: 34px;
  }
}
/* AWARDS POLISH END */

/* REAL META FLOW START */
.meta-live-demo {
  background: #070b0c;
}

.meta-flow-grid {
  align-items: stretch;
  grid-template-columns: minmax(620px, 1.2fr) minmax(360px, 0.8fr);
}

.launch-platform--whatsapp {
  border-color: rgba(37, 211, 102, 0.36);
  color: var(--warm-paper);
}

.whatsapp-mark {
  fill: #25d366;
  height: 18px;
  width: 18px;
}

.instagram-mark--gradient rect {
  fill: url("#launch-instagram-gradient");
  stroke: none;
}

.instagram-mark--gradient circle {
  stroke: #fff;
}

.ads-manager-surface,
.suite-inbox {
  background: #f5f6f7;
  border: 1px solid rgba(28, 30, 33, 0.18);
  border-radius: 10px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  color: #1c1e21;
  overflow: hidden;
}

.ads-manager-surface {
  min-height: 760px;
  padding: 0;
}

.ads-manager-topbar,
.ads-manager-toolbar,
.ads-manager-tabs,
.report-toolbar {
  align-items: center;
  border-bottom: 1px solid #e4e6eb;
  display: flex;
  gap: 8px;
  padding: 10px 14px;
}

.ads-manager-topbar {
  background: #fff;
  justify-content: space-between;
}

.ads-manager-topbar .meta-builder__product {
  color: #1c1e21;
  font-weight: 800;
}

.ads-account {
  color: #606770;
  flex: 1;
  font-size: 12px;
  text-align: center;
}

.ads-manager-toolbar,
.report-toolbar {
  background: #f0f2f5;
  flex-wrap: wrap;
}

.toolbar-button {
  background: #fff;
  border: 1px solid #ccd0d5;
  border-radius: 6px;
  color: #1c1e21;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 10px;
}

.toolbar-button--green {
  background: #42b72a;
  border-color: #42b72a;
  color: #fff;
}

.toolbar-button--publish {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.toolbar-spacer {
  flex: 1;
}

.ads-manager-tabs {
  background: #fff;
  padding-bottom: 0;
}

.ads-manager-tabs span {
  border-bottom: 3px solid transparent;
  color: #606770;
  font-size: 13px;
  font-weight: 800;
  padding: 0 4px 10px;
}

.ads-manager-tabs .is-active {
  border-color: #1877f2;
  color: #1877f2;
}

.ads-builder-view,
.ads-reporting-view {
  padding: 12px;
}

[data-builder-view][aria-hidden="true"],
[data-reporting-view][aria-hidden="true"] {
  display: none;
}

.ads-table {
  border: 1px solid #dadde1;
  border-radius: 8px;
  overflow: hidden;
}

.ads-table-row {
  align-items: stretch;
  background: #fff;
  border-top: 1px solid #e4e6eb;
  display: grid;
  gap: 0;
  grid-template-columns: 60px 92px minmax(160px, 1.25fr) minmax(150px, 1fr) minmax(150px, 1fr) minmax(150px, 1fr);
}

.ads-table-row:first-child {
  border-top: 0;
}

.ads-table-row > span {
  border-left: 1px solid #edf0f2;
  color: #1c1e21;
  display: grid;
  gap: 4px;
  min-height: 58px;
  padding: 10px;
}

.ads-table-row > span:first-child {
  border-left: 0;
}

.ads-table-head {
  background: #f0f2f5;
}

.ads-table-head span {
  color: #606770;
  font-size: 11px;
  font-weight: 800;
  min-height: auto;
  text-transform: uppercase;
}

.ads-table-row small {
  color: #606770;
  display: block;
  font-size: 10px;
  font-weight: 700;
}

.ads-table-row b,
.ads-field__value {
  color: #90949c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.28;
}

[data-launch-field].is-writing {
  background: #fff8e6;
}

[data-launch-field].is-filled {
  background: #f0f8ff;
}

[data-launch-field].is-filled .ads-field__value {
  color: #1c1e21;
}

[data-launch-field].is-writing .ads-field__value::after {
  animation: launch-cursor 650ms step-end infinite;
  color: #1877f2;
  content: "|";
  margin-left: 3px;
}

.meta-toggle {
  align-self: center;
  background: #ccd0d5;
  border-radius: 999px;
  height: 20px;
  justify-self: center;
  min-height: 20px !important;
  padding: 0 !important;
  position: relative;
  width: 38px;
}

.meta-toggle::after {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
  content: "";
  height: 16px;
  left: 2px;
  position: absolute;
  top: 2px;
  width: 16px;
}

.meta-toggle.is-on {
  background: #1877f2;
}

.meta-toggle.is-on::after {
  left: 20px;
}

.delivery-pill {
  align-self: center;
  border-radius: 999px;
  display: inline-flex !important;
  font-size: 11px;
  font-weight: 800;
  justify-self: start;
  line-height: 1;
  min-height: auto !important;
  padding: 7px 9px !important;
}

.delivery-pill--draft {
  background: #f0f2f5;
  color: #606770 !important;
}

.delivery-pill--review {
  background: #fff4d6;
  color: #9a6700 !important;
}

.delivery-pill--processing {
  background: #ede9fe;
  color: #5b21b6 !important;
}

.delivery-pill--active {
  background: #e7f3ff;
  color: #1877f2 !important;
}

.publish-preflight {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 12px 0;
}

.publish-preflight article {
  background: #fff;
  border: 1px solid #dadde1;
  border-radius: 8px;
  padding: 10px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.publish-preflight article span {
  color: #606770;
  display: block;
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.publish-preflight article strong {
  color: #1c1e21;
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

.publish-preflight article p {
  color: #606770;
  font-size: 11px;
  line-height: 1.38;
  margin: 0;
}

.publish-preflight article.is-checked {
  background: #f0fff4;
  border-color: rgba(46, 139, 87, 0.4);
  transform: translateY(-1px);
}

.publish-preflight article.is-checked strong,
.publish-preflight article.is-checked span {
  color: #2e8b57;
}

.meta-ad-preview {
  margin: 12px;
}

.metric-strip {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 12px;
}

.metric-strip article {
  background: #fff;
  border: 1px solid #dadde1;
  border-radius: 8px;
  padding: 12px;
}

.metric-strip span {
  color: #606770;
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-strip strong {
  color: #1c1e21;
  display: block;
  font-size: clamp(20px, 2vw, 30px);
  margin: 7px 0 3px;
}

.metric-strip small {
  color: #606770;
  font-size: 11px;
}

.is-live-row {
  box-shadow: inset 3px 0 #1877f2;
}

.suite-inbox {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
}

.suite-inbox__bar {
  background: #fff;
  border-bottom: 1px solid #e4e6eb !important;
  color: #1c1e21;
  margin: 0 !important;
  padding: 14px !important;
}

.suite-inbox__bar .system-label,
.suite-inbox__bar strong {
  color: #1c1e21;
}

.suite-channel-tabs {
  background: #f0f2f5;
  border-bottom: 1px solid #e4e6eb;
  display: flex;
  gap: 6px;
  padding: 10px;
}

.suite-channel-tabs span {
  background: #fff;
  border: 1px solid #ccd0d5;
  border-radius: 999px;
  color: #606770;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 9px;
}

.suite-channel-tabs .is-active {
  background: #e7f3ff;
  border-color: #1877f2;
  color: #1877f2;
}

.suite-inbox-layout {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  min-height: 520px;
}

.conversation-list {
  background: #fff;
  border-right: 1px solid #e4e6eb;
  padding: 10px;
}

.conversation-item {
  align-items: center;
  background: #e7f3ff;
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin-top: 10px;
  padding: 10px;
}

.conversation-item[aria-hidden="true"],
.thread-header[aria-hidden="true"],
.inbox-bubble[aria-hidden="true"] {
  opacity: 0;
  transform: translateY(12px);
}

.conversation-item strong,
.conversation-item p {
  margin: 0;
}

.conversation-item p {
  color: #606770;
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conversation-item > span {
  color: #1877f2;
  font-size: 10px;
  font-weight: 800;
}

.thread-panel {
  background: #f5f6f7;
  display: flex;
  flex-direction: column;
}

.thread-header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e4e6eb;
  display: grid;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 12px;
}

.thread-header strong,
.thread-header small {
  display: block;
}

.thread-header small {
  color: #606770;
  font-size: 11px;
}

.avatar {
  align-items: center;
  background: #1877f2;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.sale-badge {
  background: #f0f2f5;
  border-radius: 999px;
  color: #606770;
  font-size: 10px;
  font-weight: 900;
  padding: 6px 8px;
  text-transform: uppercase;
}

.sale-badge.is-won {
  background: #e4f8eb;
  color: #2e8b57;
}

.thread-messages {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 14px;
}

.inbox-bubble {
  border-radius: 14px;
  max-width: 86%;
  padding: 10px 12px;
}

.inbox-bubble span {
  display: block;
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.inbox-bubble p {
  font-size: 13px;
  line-height: 1.38;
  margin: 0;
}

.inbox-bubble.inbound {
  background: #fff;
  border: 1px solid #e4e6eb;
  justify-self: start;
}

.inbox-bubble.outbound {
  background: #1877f2;
  color: #fff;
  justify-self: end;
}

.inbox-bubble.system {
  background: #e4f8eb;
  border: 1px solid rgba(46, 139, 87, 0.26);
  color: #1c1e21;
  justify-self: center;
  max-width: 94%;
}

.approval-demo[data-state="review"] .launch-state,
.approval-demo[data-state="publishing"] .launch-state {
  background: #fff4d6 !important;
  color: #9a6700 !important;
}

.approval-demo[data-state="live"] .launch-state,
.approval-demo[data-state="sold"] .launch-state {
  background: #e4f8eb !important;
  color: #2e8b57 !important;
}

.approval-demo[data-state="sold"] {
  border-color: var(--signal-green);
}

.act-oath {
  --act-height: 250vh;
  height: var(--act-height);
}

.oath-lines {
  align-content: start;
}

.oath-lines p.is-oath-active {
  color: var(--acid-gold);
}

@media (max-width: 1100px) {
  .meta-flow-grid {
    grid-template-columns: 1fr;
  }

  .suite-inbox-layout {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .hero {
    display: flex;
  }

  .ads-manager-topbar,
  .ads-manager-toolbar,
  .ads-manager-tabs,
  .report-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .ads-account {
    text-align: left;
  }

  .ads-table {
    overflow-x: auto;
  }

  .ads-table-row {
    grid-template-columns: 52px 90px 180px 170px 170px 170px;
    min-width: 832px;
  }

  .publish-preflight,
  .metric-strip,
  .suite-inbox-layout {
    grid-template-columns: 1fr;
  }

  .conversation-list {
    border-bottom: 1px solid #e4e6eb;
    border-right: 0;
  }

  .act-oath {
    --act-height: 230svh;
    height: var(--act-height);
  }

  .act-oath .oath-stage {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    padding: 104px 22px 68px;
  }

  .oath-lines p,
  .oath-tagline,
  .oath-cta {
    opacity: 0;
    transform: translateY(24px);
  }

  .oath-lines p {
    font-size: clamp(1.7rem, 7.2vw, 2.45rem);
    line-height: 1.08;
  }
}
/* REAL META FLOW END */

/* OPERATIONS FILM START */
.meta-live-demo {
  overflow: hidden;
}

.meta-live-demo .approval-demo__summary {
  max-width: 820px;
}

.approval-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.approval-outcomes span {
  background: rgba(250, 247, 239, 0.06);
  border: 1px solid rgba(250, 247, 239, 0.12);
  border-radius: 999px;
  color: rgba(250, 247, 239, 0.72);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.meta-live-demo .approval-demo__principles {
  display: none;
}

.ops-demo-stage {
  background:
    radial-gradient(circle at 84% 18%, rgba(46, 139, 87, 0.16), transparent 30%),
    #071010;
  border: 1px solid rgba(250, 247, 239, 0.12);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(250, 247, 239, 0.06), 0 30px 90px rgba(0, 0, 0, 0.24);
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.ops-stage-topbar {
  align-items: center;
  border-bottom: 1px solid rgba(250, 247, 239, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
}

.ops-stage-topbar strong {
  color: var(--warm-paper);
  display: block;
  font-size: 15px;
  margin-top: 5px;
}

.ops-replay {
  background: rgba(250, 247, 239, 0.07);
  border: 1px solid rgba(250, 247, 239, 0.16);
  border-radius: 999px;
  color: var(--warm-paper);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 13px;
}

.ops-tabs {
  border-bottom: 1px solid rgba(250, 247, 239, 0.08);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.ops-tabs span {
  color: rgba(250, 247, 239, 0.45);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 12px 8px;
  text-align: center;
  text-transform: uppercase;
}

.ops-tabs span.is-active {
  background: rgba(46, 139, 87, 0.12);
  color: var(--signal-green);
}

.ops-screen-stack {
  min-height: 610px;
  position: relative;
}

.ops-screen {
  display: grid;
  inset: 0;
  opacity: 0;
  padding: 18px;
  pointer-events: none;
  position: absolute;
}

.ops-screen.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.ops-pointer {
  align-items: center;
  background: rgba(250, 247, 239, 0.94);
  border: 1px solid rgba(46, 139, 87, 0.45);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3), 0 0 0 6px rgba(46, 139, 87, 0.12);
  color: var(--honest-black);
  display: flex;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  z-index: 20;
}

.ops-pointer::after {
  background: rgba(250, 247, 239, 0.94);
  border-bottom: 1px solid rgba(46, 139, 87, 0.45);
  border-right: 1px solid rgba(46, 139, 87, 0.45);
  bottom: -4px;
  content: "";
  height: 8px;
  position: absolute;
  right: 11px;
  transform: rotate(45deg);
  width: 8px;
}

.ops-pointer span {
  align-items: center;
  display: inline-flex;
}

.ops-pointer span::before {
  content: "AI";
}

.ops-pointer.is-tapping {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3), 0 0 0 11px rgba(46, 139, 87, 0.22);
}

.approval-trace-line {
  background: linear-gradient(90deg, rgba(176, 141, 87, 0), rgba(176, 141, 87, 0.74), rgba(46, 139, 87, 0.9));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(46, 139, 87, 0.28);
  height: 2px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform-origin: left center;
  width: 120px;
  z-index: 18;
}

.approval-token {
  align-items: center;
  background:
    radial-gradient(circle at 35% 28%, rgba(250, 247, 239, 0.95), rgba(46, 139, 87, 0.88) 34%, rgba(5, 5, 5, 0.88) 72%),
    var(--signal-green);
  border: 1px solid rgba(250, 247, 239, 0.5);
  border-radius: 999px;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.4), 0 0 0 9px rgba(46, 139, 87, 0.16);
  color: var(--warm-paper);
  display: flex;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
  height: 72px;
  justify-content: center;
  left: 50%;
  letter-spacing: 0.08em;
  line-height: 1.1;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.74);
  width: 72px;
  z-index: 24;
}

.approval-token::before,
.approval-token::after {
  border: 1px solid rgba(46, 139, 87, 0.34);
  border-radius: inherit;
  content: "";
  inset: -8px;
  position: absolute;
}

.approval-token::after {
  border-color: rgba(176, 141, 87, 0.28);
  inset: -16px;
}

.approval-token span {
  max-width: 54px;
  position: relative;
}

.approval-token.is-routing {
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.4), 0 0 0 12px rgba(46, 139, 87, 0.2), 0 0 46px rgba(46, 139, 87, 0.36);
}

.ops-stage-topbar.is-token-hit,
.ops-tabs span.is-token-hit,
.ops-meta-form label.is-tokenized,
.toolbar-button--publish.is-token-hit,
.native-notification.is-token-hit,
.ops-final-card.is-token-hit {
  box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.24), 0 14px 40px rgba(46, 139, 87, 0.12);
}

.ops-meta-form label.is-tokenized {
  border-color: rgba(46, 139, 87, 0.7);
}

.launch-platform.is-live {
  border-color: rgba(46, 139, 87, 0.54);
  box-shadow: 0 0 0 1px rgba(46, 139, 87, 0.16), 0 0 28px rgba(46, 139, 87, 0.16);
  color: var(--signal-green);
}

.phone-shell {
  background: #111;
  border: 8px solid #050505;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  color: #111;
  margin: 0 auto;
  max-width: 360px;
  min-height: 560px;
  overflow: hidden;
  width: min(100%, 360px);
}

.phone-status,
.whatsapp-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.phone-status {
  background: #075e54;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 9px 18px 5px;
}

.whatsapp-header {
  background: #075e54;
  color: #fff;
  gap: 10px;
  justify-content: flex-start;
  padding: 10px 14px;
}

.wa-avatar {
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.whatsapp-header small {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 11px;
}

.whatsapp-chat {
  background:
    linear-gradient(rgba(229, 221, 213, 0.92), rgba(229, 221, 213, 0.92)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(255, 255, 255, 0.18) 12px 13px);
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-height: 493px;
  padding: 22px 14px;
}

.wa-bubble {
  background: #fff;
  border-radius: 9px 9px 9px 2px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  max-width: 86%;
  padding: 10px 12px;
}

.wa-bubble p {
  font-size: 13px;
  line-height: 1.38;
  margin: 0;
}

.wa-approve-wrap {
  align-self: flex-end;
  margin-top: auto;
  position: relative;
}

.wa-approve {
  background: #25d366;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
  color: #052b18;
  cursor: pointer;
  display: grid;
  font-weight: 900;
  padding: 12px 20px;
  position: relative;
  text-align: left;
}

.approval-demo[data-state="approval"] .wa-approve::after {
  animation: approval-ring 1.7s ease-out infinite;
  border: 1px solid rgba(37, 211, 102, 0.72);
  border-radius: inherit;
  content: "";
  inset: -8px;
  position: absolute;
}

.wa-approval-cue {
  align-items: center;
  animation: cue-breathe 1.7s ease-in-out infinite;
  background: rgba(5, 43, 24, 0.94);
  border: 1px solid rgba(37, 211, 102, 0.38);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(5, 43, 24, 0.22);
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  min-width: max-content;
  padding: 8px 11px;
  position: absolute;
  right: 12px;
  top: -38px;
  z-index: 2;
}

.wa-approval-cue::after {
  background: rgba(37, 211, 102, 0.62);
  bottom: -9px;
  content: "";
  height: 9px;
  position: absolute;
  right: 24px;
  width: 1px;
}

.wa-approval-cue[aria-hidden="true"] {
  display: none;
}

.wa-approve small {
  color: rgba(5, 43, 24, 0.65);
  font-size: 10px;
  font-weight: 800;
}

@keyframes approval-ring {
  0% {
    opacity: 0.8;
    transform: scale(0.98);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

.meta-browser-window,
.ops-suite,
.ops-notification-center {
  align-self: stretch;
  background: #f5f6f7;
  border: 1px solid rgba(28, 30, 33, 0.16);
  border-radius: 12px;
  color: #1c1e21;
  overflow: hidden;
}

.browser-bar {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e4e6eb;
  display: flex;
  gap: 7px;
  padding: 10px 14px;
}

.browser-bar strong {
  color: #606770;
  flex: 1;
  font-size: 12px;
  text-align: center;
}

.dot {
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.dot.red { background: #ff5f57; }
.dot.amber { background: #febc2e; }
.dot.green { background: #28c840; }

.ops-meta-topbar {
  justify-content: space-between;
}

.ops-delivery-strip {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e4e6eb;
  display: flex;
  gap: 10px;
  padding: 9px 14px;
}

.ops-delivery-strip > span:last-child {
  color: #606770;
  font-size: 12px;
}

.ops-meta-layout {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 430px;
}

.ops-meta-sidebar {
  background: #fff;
  border-right: 1px solid #e4e6eb;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 14px;
}

.ops-meta-sidebar span {
  border-radius: 7px;
  color: #606770;
  font-size: 13px;
  font-weight: 800;
  padding: 10px;
}

.ops-meta-sidebar .is-active {
  background: #e7f3ff;
  color: #1877f2;
}

.ops-meta-form {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.ops-meta-context {
  border: 1px solid #dadde1;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.ops-meta-context span {
  background: #fff;
  border-right: 1px solid #e4e6eb;
  color: #1c1e21;
  display: grid;
  font-size: 11px;
  gap: 4px;
  padding: 9px;
}

.ops-meta-context span:last-child {
  border-right: 0;
}

.ops-meta-context b {
  color: #606770;
  font-size: 9px;
  text-transform: uppercase;
}

.ops-meta-form label {
  background: #fff;
  border: 1px solid #dadde1;
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 10px 12px;
}

.ops-meta-form label span {
  color: #606770;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-meta-form label b {
  color: #90949c;
  font-size: 13px;
  min-height: 18px;
}

.ops-meta-form label.is-writing {
  border-color: #1877f2;
}

.ops-meta-form label.is-writing b::after {
  animation: launch-cursor 650ms step-end infinite;
  content: "|";
  margin-left: 3px;
}

.ops-meta-form label.is-filled b {
  color: #1c1e21;
}

.ops-performance-table {
  border: 1px solid #dadde1;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
}

.ops-performance-table[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease, transform 260ms ease;
}

.ops-performance-table span {
  background: #fff;
  border-right: 1px solid #e4e6eb;
  color: #606770;
  display: grid;
  font-size: 10px;
  gap: 5px;
  padding: 9px;
}

.ops-performance-table span:last-child {
  border-right: 0;
}

.ops-performance-table b {
  color: #1c1e21;
  font-size: 12px;
}

.toolbar-button--publish.is-clicked {
  background: #42b72a;
  border-color: #42b72a;
  color: #fff;
}

.ops-inbox-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 502px;
}

.ops-suite .conversation-list {
  min-height: auto;
}

.wa-mini {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  color: #052b18;
  display: inline-flex;
  font-size: 10px;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.ops-notification-center {
  align-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 246, 247, 0.94)),
    #f5f6f7;
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 32px;
}

.native-notification {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e4e6eb;
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.13);
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  max-width: 560px;
  padding: 14px;
  width: 100%;
}

.native-notification strong,
.native-notification p,
.native-notification small {
  display: block;
}

.native-notification p {
  color: #1c1e21;
  font-size: 14px;
  line-height: 1.35;
  margin: 3px 0;
}

.native-notification small,
.native-notification > span {
  color: #606770;
  font-size: 11px;
}

.app-icon {
  align-items: center;
  border-radius: 11px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.shopify-icon {
  background: #95bf47;
}

.cargo-icon {
  background: #1877f2;
}

.ziraat-icon {
  background: #df1f2d;
}

.ziraat-note {
  border-color: rgba(223, 31, 45, 0.2);
}

.ops-final-card {
  background: #071010;
  border: 1px solid rgba(46, 139, 87, 0.36);
  border-radius: 16px;
  color: var(--warm-paper);
  max-width: 560px;
  padding: 18px;
  text-align: center;
  width: 100%;
}

.ops-final-card strong {
  display: block;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.02;
  margin-top: 8px;
}

.ops-proof-receipt {
  border-top: 1px solid rgba(250, 247, 239, 0.1);
  display: grid;
  gap: 7px;
  margin-top: 16px;
  padding-top: 14px;
  text-align: left;
}

.ops-proof-receipt span {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.ops-proof-receipt b,
.ops-proof-receipt em {
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ops-proof-receipt b {
  color: rgba(250, 247, 239, 0.55);
}

.ops-proof-receipt em {
  color: var(--signal-green);
}

[data-flow-item][aria-hidden="true"] {
  opacity: 0;
  transform: translateY(12px);
}

@keyframes cue-breathe {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(5, 43, 24, 0.22), 0 0 0 0 rgba(37, 211, 102, 0);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 10px 28px rgba(5, 43, 24, 0.3), 0 0 0 5px rgba(37, 211, 102, 0.11);
    transform: translateY(2px);
  }
}

@media (max-width: 768px) {
  .meta-live-demo {
    margin-top: 48px;
    padding: 14px;
  }

  .approval-demo__header {
    gap: 14px;
    margin-bottom: 18px;
  }

  .approval-demo__message {
    font-size: clamp(24px, 7vw, 30px);
  }

  .approval-outcomes,
  .meta-live-demo .approval-demo__summary,
  .meta-live-demo .launch-platforms {
    display: none;
  }

  .ops-demo-stage {
    min-height: 594px;
  }

  .ops-screen-stack {
    min-height: 482px;
  }

  .ops-screen {
    padding: 10px;
  }

  .approval-token {
    font-size: 7px;
    height: 52px;
    width: 52px;
  }

  .approval-token span {
    max-width: 40px;
  }

  .ops-tabs span {
    font-size: 8px;
    padding: 10px 4px;
  }

  .phone-shell {
    border-width: 6px;
    border-radius: 28px;
    min-height: 456px;
    width: min(100%, 296px);
  }

  .whatsapp-chat {
    gap: 8px;
    min-height: 386px;
    padding: 16px 12px;
  }

  .wa-bubble {
    max-width: 88%;
    padding: 9px 11px;
  }

  .wa-bubble p {
    font-size: 12px;
  }

  .wa-approve {
    padding: 11px 18px;
  }

  .ops-meta-layout,
  .ops-inbox-layout {
    grid-template-columns: 1fr;
  }

  .ops-meta-sidebar {
    border-bottom: 1px solid #e4e6eb;
    border-right: 0;
    display: flex;
    padding: 8px;
  }

  .ops-meta-sidebar span {
    font-size: 11px;
    padding: 8px;
  }

  .ops-meta-form {
    gap: 7px;
    padding: 10px;
  }

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

  .ops-meta-context span {
    border-bottom: 1px solid #e4e6eb;
    font-size: 10px;
    padding: 7px;
  }

  .ops-meta-context span:nth-child(2n) {
    border-right: 0;
  }

  .ops-meta-context span:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .ops-meta-form label {
    padding: 8px 9px;
  }

  .ops-delivery-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

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

  .ops-inbox-layout .conversation-list {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
  }

  .thread-messages {
    gap: 7px;
    padding: 10px;
  }

  .inbox-bubble p,
  .native-notification p {
    font-size: 12px;
  }

  .native-notification {
    border-radius: 14px;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .native-notification > span {
    display: none;
  }

  .ops-proof-receipt {
    gap: 5px;
    margin-top: 12px;
    padding-top: 10px;
  }

  .ops-proof-receipt b,
  .ops-proof-receipt em {
    font-size: 8px;
  }
}
/* OPERATIONS FILM END */

/* SCROLL PACING START */
.act-chaos {
  --act-height: 288vh;
}

.act-enemy {
  --act-height: 230vh;
}

.act-laws {
  --act-height: 224vh;
}

.act-oath {
  --act-height: 288vh;
}

@media (max-width: 768px) {
  .act-chaos {
    --act-height: 288svh;
  }

  .act-enemy {
    --act-height: 230svh;
  }

  .act-laws {
    --act-height: 201svh;
    height: var(--act-height);
  }

  .act-oath {
    --act-height: 265svh;
    height: var(--act-height);
  }
}
/* SCROLL PACING END */
