:root {
  --ink: #090909;
  --ink-soft: #11110f;
  --paper: #f4f2eb;
  --paper-muted: #c7c5bd;
  --signal: #dc183d;
  --signal-hot: #c8ff45;
  --signal-blue: #e44327;
  --red-deep: #8f0d29;
  --red-warm: #e44327;
  --lime: #c8ff45;
  --line-on-red: rgba(255, 255, 255, .25);
  --line: rgba(244, 242, 235, 0.17);
  --line-dark: rgba(9, 9, 9, 0.16);
  --panel: rgba(255, 255, 255, 0.055);
  --radius: 20px;
  --page: min(1560px, calc(100vw - 48px));
  --ease: cubic-bezier(.2, .75, .25, 1);
  --font-display: "Helvetica Neue", "Arial Nova", Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 8%, rgba(220, 24, 61, .18), transparent 30rem),
    radial-gradient(circle at 16% 24%, rgba(228, 67, 39, .08), transparent 26rem),
    var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.055;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

::selection {
  color: #fff;
  background: var(--signal);
}

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 18px;
  color: #fff;
  background: var(--signal);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: currentColor;
  box-shadow: 0 0 20px currentColor;
}

.section-index {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-size: clamp(54px, 8vw, 132px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .88;
}

.section-title {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(42px, 6vw, 94px);
  font-weight: 780;
  letter-spacing: -.065em;
  line-height: .94;
}

.section-lead {
  margin: 0;
  max-width: 680px;
  color: var(--paper-muted);
  font-size: clamp(18px, 1.7vw, 26px);
  letter-spacing: -.025em;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: var(--signal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), color .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button__icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 15px;
}

.button--ghost {
  color: var(--paper);
  border-color: var(--line);
  background: transparent;
}

.button--ghost:hover {
  color: var(--ink);
  background: var(--paper);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 18px 0;
  transition: background .3s ease, border-color .3s ease;
}

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

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

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

.brand__mark {
  position: relative;
  width: 30px;
  height: 30px;
  border: 2px solid var(--signal);
  border-radius: 50%;
}

.brand__mark::before,
.brand__mark::after {
  position: absolute;
  content: "";
  background: var(--signal);
}

.brand__mark::before {
  top: 5px;
  bottom: 5px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%) rotate(45deg);
}

.brand__mark::after {
  top: 50%;
  right: 5px;
  left: 5px;
  height: 2px;
  transform: translateY(-50%) rotate(-45deg);
}

.brand__name {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.brand__trademark {
  color: var(--lime);
  font-size: .58em;
  letter-spacing: 0;
  line-height: 1;
  transform: translateY(-.05em);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(244, 242, 235, .72);
  transition: color .2s ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

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

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.live-pill::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--signal);
  animation: breathe 1.9s ease-in-out infinite;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: transform .2s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding: 140px 0 30px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  opacity: .28;
}

.hero__flare {
  position: absolute;
  top: 12%;
  right: -12%;
  z-index: -1;
  width: min(62vw, 920px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(220, 24, 61, .24), rgba(228, 67, 39, .06) 34%, transparent 68%);
  filter: blur(14px);
  transform: translate3d(calc(var(--mx, 0) * 14px), calc(var(--my, 0) * 14px), 0);
}

.hero__topline {
  position: absolute;
  top: 118px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(244, 242, 235, .52);
}

.hero__topline p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
  align-items: end;
  gap: clamp(30px, 5vw, 90px);
}

.hero__copy {
  padding-bottom: 24px;
}

.hero__copy .eyebrow {
  margin-bottom: 34px;
  color: var(--signal);
}

.hero__copy h1 span {
  display: block;
}

.hero__copy h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(244, 242, 235, .62);
}

.hero__copy h1 .signal {
  color: var(--signal);
}

.hero__bottom {
  max-width: 560px;
  margin-top: clamp(34px, 6vh, 70px);
}

.hero__intro {
  margin: 0;
  color: rgba(244, 242, 235, .68);
  font-size: 17px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.system-map {
  position: relative;
  width: min(100%, 650px);
  aspect-ratio: 1;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(220, 24, 61, .24), transparent 28%),
    rgba(255, 255, 255, .02);
}

.system-map::before,
.system-map::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(244, 242, 235, .12);
  border-radius: 50%;
  content: "";
}

.system-map::after {
  inset: 27%;
  border-style: dashed;
  animation: spin 30s linear infinite;
}

.system-map__grid {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(244, 242, 235, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 242, 235, .14) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.system-map__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.system-map__lines path {
  fill: none;
  stroke: rgba(220, 24, 61, .68);
  stroke-width: 1;
  stroke-dasharray: 4 6;
  animation: dash 12s linear infinite;
}

.system-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 168px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--signal);
  border-radius: 50%;
  color: #fff;
  background: var(--signal);
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 90px rgba(220, 24, 61, .34);
}

.system-core strong {
  display: block;
  font-size: 25px;
  letter-spacing: -.05em;
  line-height: .9;
  text-transform: uppercase;
}

.system-core small {
  display: block;
  margin-top: 9px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.system-node {
  position: absolute;
  display: flex;
  min-width: 118px;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 9, 9, .84);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.system-node::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--signal-blue);
  box-shadow: 0 0 14px currentColor;
}

.system-node--ai { top: 13%; left: 39%; }
.system-node--crm { top: 39%; right: 5%; }
.system-node--shop { right: 15%; bottom: 13%; }
.system-node--data { bottom: 10%; left: 17%; }
.system-node--team { top: 35%; left: 5%; }

.system-node--crm::before,
.system-node--data::before { background: var(--lime); }
.system-node--shop::before { background: var(--signal); }

.system-map__caption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  color: rgba(244, 242, 235, .42);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.signal-strip {
  overflow: hidden;
  padding: 16px 0;
  color: #fff;
  background: var(--signal);
  border-block: 1px solid var(--red-deep);
}

.signal-strip__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.signal-strip__group {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: space-evenly;
  min-width: 100vw;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.signal-strip__group span {
  display: inline-flex;
  align-items: center;
}

.signal-strip__group span::after {
  margin: 0 22px;
  color: var(--lime);
  content: "✦";
}

.manifesto {
  padding: clamp(110px, 13vw, 210px) 0;
  color: var(--ink);
  background: var(--paper);
}

.manifesto__head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-dark);
}

.manifesto__statement {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  gap: 8vw;
  padding-top: clamp(50px, 8vw, 120px);
}

.manifesto__statement h2 {
  margin: 0;
  font-size: clamp(50px, 7.5vw, 116px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .91;
}

.manifesto__statement h2 span {
  display: block;
  color: var(--signal);
}

.manifesto__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 70px;
}

.manifesto__aside p {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
}

.manifesto__formula {
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.65;
  text-transform: uppercase;
}

.manifesto__formula strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: -.05em;
  line-height: 1;
  text-transform: none;
}

.services {
  padding: clamp(100px, 12vw, 190px) 0;
}

.services__head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  align-items: end;
  gap: 60px;
  margin-bottom: 72px;
}

.services__head .eyebrow {
  margin-bottom: 32px;
  color: var(--signal);
}

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

.service-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(26px, 3vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(500px circle at var(--x, 50%) var(--y, 50%), rgba(220, 24, 61, .22), transparent 44%),
    var(--panel);
  transition: border-color .35s ease, transform .35s var(--ease);
}

.service-card:hover {
  border-color: rgba(220, 24, 61, .88);
  transform: translateY(-5px);
}

.service-card__top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-card__status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(244, 242, 235, .55);
}

.service-card__status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--lime);
}

.service-card h3 {
  max-width: 600px;
  margin: clamp(80px, 10vw, 142px) 0 20px;
  font-size: clamp(41px, 4.4vw, 76px);
  font-weight: 760;
  letter-spacing: -.065em;
  line-height: .93;
}

.service-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(244, 242, 235, .64);
  font-size: 17px;
  line-height: 1.55;
}

.service-card__tags {
  position: absolute;
  right: clamp(26px, 3vw, 48px);
  bottom: clamp(26px, 3vw, 48px);
  left: clamp(26px, 3vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-card__tags span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(244, 242, 235, .72);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-card:nth-child(2) {
  background:
    radial-gradient(500px circle at var(--x, 50%) var(--y, 50%), rgba(228, 67, 39, .2), transparent 42%),
    var(--panel);
}

.service-card:nth-child(3) {
  background:
    radial-gradient(500px circle at var(--x, 50%) var(--y, 50%), rgba(200, 255, 69, .1), transparent 42%),
    var(--panel);
}

.system-section {
  padding: clamp(100px, 11vw, 170px) 0;
  color: #fff;
  background: var(--red-deep);
}

.system-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 76px;
}

.system-section__head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-on-red);
  border-bottom: 1px solid var(--line-on-red);
}

.flow__step {
  position: relative;
  min-height: 360px;
  padding: 24px 22px 28px;
  border-right: 1px solid var(--line-on-red);
}

.flow__step:last-child {
  border-right: 0;
}

.flow__step::after {
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 2;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  content: "→";
  color: var(--ink);
  background: var(--lime);
  font-size: 12px;
  transform: translateY(-50%);
}

.flow__step:last-child::after {
  display: none;
}

.flow__number {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
}

.flow__step h3 {
  margin: 110px 0 14px;
  font-size: clamp(27px, 2.4vw, 40px);
  letter-spacing: -.055em;
  line-height: 1;
}

.flow__step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.flow__signal {
  position: absolute;
  right: 22px;
  bottom: 24px;
  left: 22px;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
}

.flow__signal::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease);
}

.flow__step.is-visible .flow__signal::after {
  transform: scaleX(1);
}

.proof {
  padding: clamp(110px, 12vw, 190px) 0;
}

.proof__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  align-items: end;
  gap: 60px;
  margin-bottom: 76px;
}

.proof__head .eyebrow {
  margin-bottom: 30px;
  color: var(--lime);
}

.use-cases {
  border-top: 1px solid var(--line);
}

.use-case {
  display: grid;
  grid-template-columns: 100px minmax(260px, .75fr) minmax(300px, 1.25fr) 44px;
  align-items: center;
  gap: 26px;
  min-height: 132px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: color .25s ease, background .25s ease;
}

.use-case:hover {
  color: var(--ink);
  background: var(--paper);
}

.use-case__index {
  padding-left: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
}

.use-case h3 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 46px);
  font-weight: 730;
  letter-spacing: -.045em;
}

.use-case p {
  margin: 0;
  color: rgba(244, 242, 235, .58);
  font-size: 15px;
}

.use-case:hover p {
  color: rgba(9, 9, 9, .64);
}

.use-case__arrow {
  font-size: 24px;
  transform: rotate(-45deg);
  transition: transform .25s var(--ease);
}

.use-case:hover .use-case__arrow {
  transform: rotate(0);
}

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 11vw, 170px) 0 34px;
  color: var(--ink);
  background: var(--paper);
}

.cta::before {
  position: absolute;
  top: -38%;
  right: -11%;
  width: min(65vw, 970px);
  aspect-ratio: 1;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 90px rgba(9, 9, 9, .025),
    0 0 0 180px rgba(9, 9, 9, .018),
    0 0 0 270px rgba(9, 9, 9, .012);
}

.cta__header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.cta__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
  align-items: end;
  gap: 7vw;
  padding: clamp(58px, 8vw, 118px) 0 120px;
}

.cta h2 {
  margin: 0;
  font-size: clamp(62px, 9.5vw, 154px);
  font-weight: 820;
  letter-spacing: -.08em;
  line-height: .82;
}

.cta h2 span {
  display: block;
  color: var(--signal);
}

.cta__aside {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(220, 24, 61, .34);
  border-radius: 22px;
  background: rgba(255, 255, 255, .4);
}

.cta__aside p {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.5;
}

.cta .button {
  width: 100%;
  color: var(--paper);
  background: var(--signal);
}

.cta__note {
  display: block;
  margin-top: 13px;
  color: rgba(9, 9, 9, .52);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.footer__brand {
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 830;
  letter-spacing: -.065em;
  line-height: 1;
}

.footer__trademark {
  color: var(--signal);
  font-size: .45em;
  letter-spacing: 0;
  vertical-align: top;
}

.footer__meta {
  display: flex;
  gap: 30px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 160;
  max-width: 360px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--paper);
  background: rgba(9, 9, 9, .94);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .4);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .25s ease, transform .25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes dash {
  to { stroke-dashoffset: -200; }
}

@keyframes breathe {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(220, 24, 61, .5); }
  50% { opacity: .55; box-shadow: 0 0 0 7px rgba(220, 24, 61, 0); }
}

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

@media (max-width: 1180px) {
  :root {
    --page: min(100% - 36px, 1100px);
  }

  .nav,
  .live-pill {
    display: none;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav.is-open {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 90px 24px 30px;
    background: rgba(9, 9, 9, .98);
  }

  .nav.is-open a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--paper);
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 760;
    letter-spacing: -.04em;
    text-transform: none;
  }

  .menu-toggle[aria-expanded="true"] {
    position: relative;
    z-index: 2;
  }

  .menu-toggle[aria-expanded="true"]::before {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span {
    transform: translateY(-3px) rotate(-45deg);
  }

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

  .hero__copy {
    padding-top: 120px;
  }

  .system-map {
    width: min(100%, 720px);
    justify-self: stretch;
  }

  .services__head,
  .proof__head,
  .system-section__head {
    grid-template-columns: 1fr;
  }

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

  .flow__step:nth-child(3) {
    border-right: 0;
  }

  .flow__step:nth-child(3)::after {
    display: none;
  }

  .flow__step:nth-child(n+4) {
    border-top: 1px solid var(--line-dark);
  }

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

  .cta__aside {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  :root {
    --radius: 20px;
    --page: calc(100% - 28px);
  }

  .site-header {
    padding: 12px 0;
  }

  .brand__name {
    font-size: 13px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero__topline {
    top: 88px;
  }

  .hero__topline p:last-child {
    display: none;
  }

  .hero__copy {
    padding-top: 90px;
  }

  .hero__copy .eyebrow {
    margin-bottom: 24px;
  }

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

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

  .button {
    width: 100%;
  }

  .system-map {
    margin-top: 10px;
  }

  .system-core {
    width: 118px;
  }

  .system-core strong {
    font-size: 18px;
  }

  .system-node {
    min-width: 86px;
    padding: 7px 9px;
    font-size: 7px;
  }

  .system-node--ai { top: 10%; left: 34%; }
  .system-node--crm { top: 38%; right: 2%; }
  .system-node--shop { right: 8%; bottom: 14%; }
  .system-node--data { bottom: 8%; left: 9%; }
  .system-node--team { top: 35%; left: 2%; }

  .manifesto__head,
  .cta__header {
    gap: 20px;
  }

  .manifesto__statement {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    min-height: 470px;
  }

  .service-card h3 {
    margin-top: 75px;
  }

  .flow {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .flow__step {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .flow__step:nth-child(n+4) {
    border-top: 0;
  }

  .flow__step::after,
  .flow__step:nth-child(3)::after {
    top: auto;
    right: 22px;
    bottom: -13px;
    display: grid;
    transform: rotate(90deg);
  }

  .flow__step:last-child::after {
    display: none;
  }

  .flow__step h3 {
    margin-top: 62px;
  }

  .use-case {
    grid-template-columns: 44px 1fr 30px;
    gap: 14px;
    padding: 24px 0;
  }

  .use-case__index {
    padding-left: 0;
  }

  .use-case p {
    display: none;
  }

  .cta__content {
    padding-bottom: 88px;
  }

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

  .footer__meta {
    flex-wrap: wrap;
    gap: 12px 22px;
  }
}

@media (max-width: 420px) {
  .display {
    font-size: clamp(48px, 15vw, 68px);
  }

  .manifesto__head span,
  .cta__header span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* WordPress content fallbacks */
.content-page {
  min-height: 100vh;
  padding: 180px 0 110px;
}

.content-page__inner {
  max-width: 900px;
}

.content-page h1 {
  margin: 0 0 42px;
  font-size: clamp(48px, 7vw, 104px);
  letter-spacing: -.07em;
  line-height: .9;
}

.content-page__body {
  color: rgba(244, 242, 235, .76);
  font-size: 18px;
  line-height: 1.7;
}

.content-page__body a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: .2em;
}

.site-footer-generic {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: rgba(244, 242, 235, .58);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
