:root {
  --ink: #11120e;
  --paper: #f2efe5;
  --white: #fbfaf5;
  --coral: #ff5d42;
  --blue: #4562ff;
  --lime: #d7ff64;
  --line: rgba(17, 18, 14, 0.22);
  --dark-line: rgba(251, 250, 245, 0.2);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

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

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 80px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  width: max-content;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.wordmark-dot {
  display: inline-block;
  margin-left: 0.08em;
  color: var(--coral);
  font-size: 0.5em;
  vertical-align: top;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 99px;
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 99px;
  color: rgba(17, 18, 14, 0.58);
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-link.active {
  background: var(--ink);
  color: var(--white);
}

.header-action {
  justify-self: end;
  border-bottom: 1px solid var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
}

.header-action span,
.button span {
  display: inline-block;
  margin-left: 0.55rem;
  transition: transform 180ms ease;
}

.header-action:hover span,
.button:hover span {
  transform: translate(3px, -3px);
}

.hero {
  min-height: calc(100vh - 80px);
  padding: 5vw 4vw;
}

.consumer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
  gap: 7vw;
  align-items: center;
  overflow: hidden;
}

.eyebrow {
  margin-bottom: 1.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
}

.pulse,
.enterprise-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: var(--coral);
}

.hero h1,
.enterprise-hero h1 {
  max-width: 11ch;
  margin-bottom: 2.5rem;
  font-size: clamp(3.8rem, 7vw, 7.6rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

h1 em,
h2 em {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-intro {
  max-width: 41rem;
  margin-bottom: 2.25rem;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.35rem;
  border: 1px solid var(--ink);
  font-size: 0.87rem;
  font-weight: 700;
}

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

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

.text-link {
  border-bottom: 1px solid var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}

.text-link span {
  margin-left: 0.4rem;
}

.build-card {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 22px 22px 0 var(--blue);
  transform: rotate(1.5deg);
}

.build-card::before {
  position: absolute;
  top: -42px;
  right: -48px;
  z-index: -1;
  width: 110px;
  height: 110px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.build-card-top {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0.1rem 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.status-light {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: #37b85c;
}

.prompt-block {
  position: relative;
  padding: 1.3rem 1rem 1.1rem 2.7rem;
  border-bottom: 1px solid var(--line);
}

.prompt-block p {
  margin: 0;
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  line-height: 1.55;
}

.prompt-mark {
  position: absolute;
  top: 0.8rem;
  left: 0.6rem;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.build-log {
  margin: 0;
  padding: 0.8rem 0;
  list-style: none;
  font-family: var(--mono);
  font-size: 0.7rem;
}

.build-log li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  padding: 0.4rem 0.7rem;
}

.build-log .done {
  color: rgba(17, 18, 14, 0.42);
  text-decoration: line-through;
}

.build-log .current {
  background: var(--lime);
}

.mini-app {
  min-height: 245px;
  padding: 1rem 1.2rem 1.35rem;
  background: #e8d8ff;
}

.mini-app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.mini-avatar {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.58rem;
}

.mini-kicker {
  margin-bottom: 0.5rem;
  font-family: var(--mono);
  font-size: 0.63rem;
}

.mini-app h2 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.mini-tags {
  display: flex;
  gap: 0.4rem;
}

.mini-tags span {
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--ink);
  border-radius: 99px;
  font-size: 0.6rem;
}

/* 404 */

.notfound {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.7fr);
  gap: 7vw;
  align-items: center;
  overflow: hidden;
}

.notfound h1 {
  max-width: 12ch;
}

.notfound-mark {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 22px 22px 0 var(--blue);
  transform: rotate(-1.5deg);
}

.notfound-mark::before {
  position: absolute;
  top: -42px;
  right: -48px;
  z-index: -1;
  width: 110px;
  height: 110px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.notfound-mark-top {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0.1rem 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.status-light-error {
  background: var(--coral);
}

.notfound-numeral {
  margin: 0;
  padding: 2.25rem 0 1.9rem;
  border-bottom: 1px solid var(--line);
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 10vw, 8.5rem);
  letter-spacing: -0.055em;
  line-height: 1;
  text-align: center;
}

.marquee-band {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--lime);
}

.marquee-band p {
  width: max-content;
  margin: 0;
  padding: 1.1rem 0;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  word-spacing: 1.2rem;
}

.marquee-band span {
  color: var(--coral);
}

.how-section,
.made-for-section,
.start-section,
.enterprise-problem,
.enterprise-flow,
.enterprise-balance,
.enterprise-cta {
  padding: 8rem 4vw;
}

.how-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
}

.section-heading h2,
.made-for-copy h2,
.start-content h2,
.flow-header h2,
.balance-statement h2,
.enterprise-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5.6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.step {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--ink);
}

.step-number {
  font-family: var(--mono);
  font-size: 0.7rem;
}

.step h3 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.step p {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(17, 18, 14, 0.65);
}

.made-for-section {
  background: var(--ink);
  color: var(--white);
}

.made-for-copy {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 0.7fr;
  gap: 4vw;
  align-items: end;
  margin-bottom: 5rem;
}

.made-for-copy .eyebrow {
  align-self: start;
}

.made-for-copy p:last-child {
  margin-bottom: 0;
  color: rgba(251, 250, 245, 0.68);
}

.saasie-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--white);
  border: 1px solid var(--white);
}

.example-card {
  position: relative;
  min-height: 390px;
  padding: 1.5rem;
  color: var(--ink);
}

.example-index {
  font-family: var(--mono);
  font-size: 0.66rem;
}

.example-card h3 {
  margin: 6rem 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.example-card p {
  max-width: 17rem;
  font-size: 0.84rem;
}

.example-arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.3rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.example-coral {
  background: var(--coral);
}

.example-blue {
  background: #aebaff;
}

.example-lime {
  background: var(--lime);
}

.start-section {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 5vw;
  background: var(--blue);
  color: var(--white);
}

.start-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.72rem;
}

.scribble-arrow {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 0.8;
}

.start-content {
  max-width: 70rem;
}

.starter-prompt {
  margin-top: 3rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--ink);
  box-shadow: 14px 14px 0 var(--lime);
}

.starter-prompt p {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(0.95rem, 1.8vw, 1.45rem);
  line-height: 1.6;
}

.starter-prompt strong {
  background: var(--lime);
  font-weight: 500;
}

.start-note {
  margin: 1.8rem 0 0;
  font-size: 0.8rem;
}

.final-cta {
  display: flex;
  min-height: 76vh;
  padding: 7rem 4vw;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 2.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: 5rem 4vw 2rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
}

.footer-wordmark {
  font-size: 2.5rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-meta {
  font-family: var(--mono);
  font-size: 0.62rem;
}

/* Enterprise */

.enterprise {
  background: #10130f;
  color: var(--white);
}

.enterprise ::selection {
  background: var(--coral);
  color: var(--ink);
}

.enterprise-header {
  border-color: var(--dark-line);
}

.enterprise-header .main-nav {
  border-color: var(--dark-line);
}

.enterprise-header .nav-link {
  color: rgba(251, 250, 245, 0.58);
}

.enterprise-header .nav-link.active {
  background: var(--white);
  color: var(--ink);
}

.enterprise-action {
  border-color: var(--white);
}

.enterprise-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: 4rem 4vw 3rem;
  overflow: hidden;
}

.enterprise-hero-top {
  display: flex;
  justify-content: space-between;
}

.enterprise-eyebrow {
  color: rgba(251, 250, 245, 0.64);
}

.enterprise-dot {
  background: var(--lime);
}

.enterprise-number {
  font-family: var(--mono);
  font-size: 0.68rem;
}

.enterprise-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 10ch;
  margin: 8vh 0 3rem;
  font-size: clamp(4.2rem, 9.5vw, 10.5rem);
}

.enterprise-hero h1 em {
  color: var(--lime);
}

.enterprise-hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 47rem;
  gap: 2rem;
  align-items: flex-end;
}

.enterprise-hero-bottom p {
  margin: 0;
  color: rgba(251, 250, 245, 0.72);
  font-size: 1.05rem;
}

.enterprise-hero-bottom .button {
  flex: 0 0 auto;
}

.enterprise-orbit {
  position: absolute;
  right: -3vw;
  bottom: -12vw;
  width: min(44vw, 650px);
  aspect-ratio: 1;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
}

.enterprise-orbit::before,
.enterprise-orbit::after {
  position: absolute;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  content: "";
  inset: 14%;
}

.enterprise-orbit::after {
  inset: 32%;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 4rem;
  transform: translate(-50%, -50%);
}

.orbit-label {
  position: absolute;
  padding: 0.3rem 0.55rem;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.6rem;
}

.orbit-label-one {
  top: 8%;
  left: 46%;
}

.orbit-label-two {
  top: 50%;
  left: -2%;
}

.orbit-label-three {
  right: 3%;
  bottom: 25%;
}

.enterprise-proof {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 5vw;
  padding: 3.5rem 4vw;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.proof-lead p {
  margin: 0;
  color: rgba(251, 250, 245, 0.68);
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  background: var(--dark-line);
}

.proof-stats div {
  padding-left: 2rem;
  background: #10130f;
}

.proof-stats dt {
  margin-bottom: 0.5rem;
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.proof-stats dd {
  margin: 0;
  font-size: 0.72rem;
}

.enterprise-problem {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8vw;
  background: var(--paper);
  color: var(--ink);
}

.enterprise-section-heading h2 {
  font-size: clamp(3rem, 6.3vw, 6.5rem);
}

.enterprise-problem .enterprise-eyebrow {
  color: rgba(17, 18, 14, 0.55);
}

.problem-copy {
  align-self: end;
  padding-top: 10rem;
}

.problem-lead {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.problem-copy p:last-child {
  color: rgba(17, 18, 14, 0.62);
}

.enterprise-flow {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
}

.flow-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--dark-line);
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--dark-line);
}

.flow-index,
.flow-state {
  font-family: var(--mono);
  font-size: 0.62rem;
}

.flow-index {
  color: var(--lime);
}

.flow-state {
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--dark-line);
  color: rgba(251, 250, 245, 0.48);
}

.flow-list h3 {
  margin-bottom: 0.45rem;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.flow-list p {
  max-width: 30rem;
  margin: 0;
  color: rgba(251, 250, 245, 0.62);
  font-size: 0.85rem;
}

.enterprise-balance {
  background: var(--lime);
  color: var(--ink);
}

.balance-statement {
  margin-bottom: 5rem;
}

.balance-statement .enterprise-eyebrow {
  color: rgba(17, 18, 14, 0.55);
}

.balance-statement h2 em {
  color: var(--blue);
}

.balance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.balance-grid article {
  min-height: 300px;
  padding: 1.5rem;
  background: var(--lime);
}

.balance-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 5rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.6rem;
}

.balance-grid h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.balance-grid p {
  margin-bottom: 0;
  color: rgba(17, 18, 14, 0.64);
  font-size: 0.82rem;
}

.enterprise-quote {
  padding: 10rem 10vw;
  background: var(--blue);
  text-align: center;
}

.enterprise-quote blockquote {
  max-width: 18ch;
  margin-right: auto;
  margin-bottom: 2.5rem;
  margin-left: auto;
  font-family: Georgia, serif;
  font-size: clamp(2.6rem, 5.7vw, 6rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.enterprise-quote p {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.65rem;
}

.enterprise-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10vw;
  background: var(--coral);
  color: var(--ink);
}

.enterprise-cta .enterprise-eyebrow {
  color: rgba(17, 18, 14, 0.58);
}

.enterprise-cta-action {
  align-self: end;
}

.enterprise-cta-action p {
  margin-bottom: 2rem;
}

.enterprise-footer {
  border-top: 1px solid var(--dark-line);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .consumer-hero,
  .notfound {
    grid-template-columns: 1fr;
    padding-top: 5rem;
    padding-bottom: 6rem;
  }

  .build-card,
  .notfound-mark {
    width: min(90%, 520px);
    margin: 2rem auto 0;
  }

  .how-section,
  .enterprise-problem,
  .enterprise-flow,
  .enterprise-cta {
    grid-template-columns: 1fr;
  }

  .made-for-copy {
    grid-template-columns: 1fr;
  }

  .saasie-examples {
    grid-template-columns: 1fr;
  }

  .example-card {
    min-height: 330px;
  }

  .start-section {
    grid-template-columns: 1fr;
  }

  .start-label {
    flex-direction: row;
  }

  .scribble-arrow {
    font-size: 4rem;
  }

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

  .enterprise-orbit {
    right: -20vw;
    bottom: -8vw;
    width: 68vw;
    opacity: 0.55;
  }

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

  .problem-copy {
    padding-top: 2rem;
  }

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

@media (max-width: 600px) {
  .site-header {
    min-height: 68px;
    padding: 0 1.25rem;
  }

  .header-action {
    font-size: 0.72rem;
  }

  .hero,
  .how-section,
  .made-for-section,
  .start-section,
  .enterprise-problem,
  .enterprise-flow,
  .enterprise-balance,
  .enterprise-cta {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .consumer-hero,
  .notfound {
    display: block;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5.4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .build-card,
  .notfound-mark {
    width: calc(100% - 16px);
    margin-top: 5rem;
    box-shadow: 12px 12px 0 var(--blue);
  }

  .how-section,
  .made-for-section,
  .start-section,
  .enterprise-problem,
  .enterprise-flow,
  .enterprise-balance,
  .enterprise-cta {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-heading {
    margin-bottom: 3rem;
  }

  .step {
    grid-template-columns: 3rem 1fr;
  }

  .made-for-copy {
    margin-bottom: 3rem;
  }

  .start-label {
    margin-bottom: 2rem;
  }

  .starter-prompt {
    box-shadow: 8px 8px 0 var(--lime);
  }

  .final-cta {
    min-height: 65vh;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .enterprise-hero {
    min-height: 800px;
    padding: 3rem 1.25rem;
  }

  .enterprise-hero h1 {
    margin-top: 10vh;
    font-size: clamp(3.8rem, 18vw, 6.3rem);
  }

  .enterprise-hero-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .enterprise-orbit {
    right: -42vw;
    bottom: -4rem;
    width: 125vw;
  }

  .enterprise-proof {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .proof-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    background: transparent;
  }

  .proof-stats div {
    padding: 1rem 0;
    border-top: 1px solid var(--dark-line);
  }

  .flow-list li {
    grid-template-columns: 2.5rem 1fr;
  }

  .flow-state {
    display: none;
  }

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

  .enterprise-quote {
    padding: 7rem 1.25rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
