:root {
  color-scheme: dark;
  --black: #050505;
  --ink: #101010;
  --paper: #f6f4ef;
  --paper-soft: #ecebe7;
  --muted-dark: rgba(255, 255, 255, 0.66);
  --muted-light: rgba(0, 0, 0, 0.56);
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(0, 0, 0, 0.1);
  --red: #ef190c;
  --radius-xl: 22px;
  --radius: 10px;
  --page: min(100% - 32px, 1320px);
  --hero-progress: 0;
  --hero-scroll: 0;
  --panel-lift: 70px;
  --panel-scale: 0.91;
  --hero-bg-y: 0px;
  --hero-bg-reverse-y: 0px;
  --hero-text-y: 0px;
  --hero-visual-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: white;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: var(--page);
  margin: 0 auto;
  padding: 24px 0;
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.brand,
.nav,
.header-cta,
.language-switch {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-self: start;
  padding: 9px 13px 9px 9px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: white;
  color: var(--black);
  font-size: 14px;
}

.nav {
  display: flex;
  justify-self: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
}

.nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 650;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px 0 17px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-width: max-content;
}

.language-switch {
  display: inline-flex;
  gap: 3px;
  padding: 5px;
  border-radius: 999px;
}

.language-switch button {
  min-width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.language-switch button.is-active {
  background: white;
  color: var(--black);
}

.header-cta span:last-child,
.button span:last-child {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.header-cta span:last-child {
  background: white;
  color: var(--black);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.menu-button span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 82svh;
  padding: 144px max(16px, calc((100vw - 1320px) / 2)) 58px;
  overflow: hidden;
  isolation: isolate;
}

.flow-section {
  position: relative;
  transition:
    filter 900ms ease,
    transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.flow-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -90px;
  z-index: 0;
  width: min(760px, 62vw);
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  filter: blur(18px);
  opacity: 0;
  transform: translateX(-50%) translateY(34px) scaleX(0.72);
  transition: opacity 900ms ease, transform 1100ms cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.flow-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -72px;
  z-index: 1;
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0;
  transform: translateX(-50%) scaleY(0.2);
  transform-origin: top;
  transition: opacity 900ms ease, transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.flow-section.is-active::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scaleX(1);
}

.flow-section.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
}

.dark-split.flow-section,
.team-strip.flow-section,
.systems.flow-section,
.momentum.flow-section,
.faq.flow-section {
  transform: translateY(14px);
}

.dark-split.flow-section.is-active,
.team-strip.flow-section.is-active,
.systems.flow-section.is-active,
.momentum.flow-section.is-active,
.faq.flow-section.is-active {
  transform: translateY(0);
}

.texture::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  opacity: 0.38;
  background-image:
    linear-gradient(105deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 43%, transparent 47% 100%),
    linear-gradient(165deg, transparent 0 56%, rgba(239, 25, 12, 0.18) 57%, transparent 61% 100%),
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px),
    radial-gradient(circle at 76% 38%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px);
  background-size: 180% 100%, 160% 100%, 18px 18px, 25px 25px;
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 86%, transparent 100%);
  animation: texture-drift 18s linear infinite;
  transform: translate3d(0, var(--hero-bg-y), 0) scale(1.04);
  will-change: transform, background-position;
}

.texture::after {
  content: "";
  position: absolute;
  inset: -18% -10%;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.44) 62%, var(--black)),
    radial-gradient(circle at 68% 23%, rgba(255, 255, 255, 0.2), transparent 27%),
    radial-gradient(circle at 17% 72%, rgba(239, 25, 12, 0.18), transparent 24%),
    conic-gradient(from 140deg at 72% 35%, transparent 0 18%, rgba(255, 255, 255, 0.1) 20% 21%, transparent 24% 100%);
  transform: translate3d(0, var(--hero-bg-reverse-y), 0) scale(1.05);
  animation: hero-light-sweep 12s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, var(--hero-visual-y), 0);
  will-change: transform;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(-8deg);
}

.hero-visual::before {
  top: 18%;
  right: -9vw;
  width: min(660px, 52vw);
  height: min(360px, 34vw);
  border-radius: 34px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 42%),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, 0.13) 39px 40px);
  box-shadow: 0 32px 120px rgba(255, 255, 255, 0.08);
  animation: hero-plane 10s ease-in-out infinite;
}

.hero-visual::after {
  left: 8vw;
  bottom: 7%;
  width: min(460px, 42vw);
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 25, 12, 0.46), rgba(255, 255, 255, 0.12), transparent);
  filter: blur(1px);
  opacity: 0.64;
  animation: hero-runner 7s ease-in-out infinite alternate;
}

.hero-visual span {
  position: absolute;
  display: block;
  width: clamp(160px, 22vw, 360px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  opacity: 0.74;
  transform: rotate(-18deg);
  animation: hero-streak 5.8s ease-in-out infinite;
}

.hero-visual span:nth-child(1) {
  top: 23%;
  left: 44%;
}

.hero-visual span:nth-child(2) {
  top: 47%;
  left: 58%;
  animation-delay: -2.1s;
}

.hero-visual span:nth-child(3) {
  top: 68%;
  left: 28%;
  animation-delay: -3.7s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  transform: translate3d(0, var(--hero-text-y), 0);
  will-change: transform;
}

.kicker {
  margin-bottom: 26px;
  color: var(--muted-dark);
  font-size: 15px;
  font-weight: 650;
}

.hero h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(48px, 7.8vw, 112px);
  font-weight: 500;
  line-height: 0.95;
}

.hero p:not(.kicker) {
  width: min(620px, 100%);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.55;
}

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

.button-light {
  background: white;
  color: var(--black);
}

.button-light span:last-child {
  background: var(--black);
  color: white;
}

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

.button-dark span:last-child {
  background: var(--red);
  color: white;
}

.button-ghost {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.approach-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(36px, 6vw, 96px);
  width: var(--page);
  margin: -28px auto 0;
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius-xl);
  background: var(--paper);
  color: var(--black);
  box-shadow: 0 -40px 90px rgba(255, 255, 255, 0.08);
  transform: translate3d(0, var(--panel-lift), 0) scaleX(var(--panel-scale));
  transform-origin: top center;
  transition:
    box-shadow 280ms ease,
    border-radius 280ms ease;
  will-change: transform;
}

.approach-panel::before {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.approach-panel::after,
.final-cta::after,
.site-footer::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18), transparent);
}

.panel-tabs {
  display: grid;
  align-content: start;
  gap: 8px;
  font-size: 14px;
  font-weight: 750;
}

.panel-tabs span {
  width: fit-content;
}

.panel-main h2 {
  max-width: 960px;
  margin-bottom: clamp(46px, 7vw, 88px);
  font-size: clamp(32px, 4.8vw, 62px);
  font-weight: 500;
  line-height: 1.08;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-grid article {
  min-height: 230px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.process-grid span,
.pricing-grid article > p {
  display: block;
  margin-bottom: 32px;
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 750;
}

.process-grid h3,
.pricing-grid h3 {
  margin-bottom: 26px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.process-grid p,
.process-grid p {
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.5;
}

.faq p {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-grid li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.dark-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(50px, 10vw, 150px);
  width: var(--page);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 165px) 0;
}

.dark-split h2 {
  max-width: 600px;
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 500;
  line-height: 1.08;
}

.founder-line {
  color: var(--muted-dark);
}

.proof-list article {
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
}

.proof-list article:first-child {
  padding-top: 0;
}

.proof-list h3 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 650;
}

.proof-list p,
.section-title p {
  color: var(--muted-dark);
  line-height: 1.55;
}

.team-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(28px, 6vw, 80px);
  width: var(--page);
  margin: 0 auto;
  padding: 0 0 clamp(90px, 12vw, 150px);
}

.team-strip h2 {
  max-width: 540px;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.08;
}

.team-strip div {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 10px;
}

.team-strip span {
  padding: 12px 15px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 650;
}

.systems {
  width: var(--page);
  margin: 0 auto;
  padding-bottom: clamp(95px, 12vw, 155px);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  margin-bottom: 36px;
}

.section-title h2 {
  max-width: 700px;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 500;
  line-height: 1;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.work-card {
  min-height: 610px;
}

.work-label {
  margin-bottom: 14px;
}

.work-label h3 {
  margin-bottom: 4px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
}

.work-label p {
  color: var(--muted-dark);
}

.mock {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--black);
}

.mock-dashboard {
  align-content: center;
  gap: 16px;
  padding: clamp(34px, 5vw, 70px);
  background:
    linear-gradient(135deg, #eaf4ef, #d8f6ff 55%, #f4f0e8);
}

.mock-dashboard span {
  display: block;
  width: min(390px, 100%);
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  font-weight: 750;
}

.mock-store {
  align-content: stretch;
  gap: 22px;
  padding: clamp(26px, 4vw, 46px);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.72), transparent 23%),
    linear-gradient(145deg, #f6ecff, #dad6ff 50%, #ffd9bf);
}

.store-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.store-topline span {
  width: fit-content;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(0, 0, 0, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.store-topline strong {
  max-width: 360px;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 500;
  line-height: 0.95;
  text-align: right;
}

.product-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.product-stack article {
  display: grid;
  gap: 10px;
  min-height: 265px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 28px 80px rgba(50, 35, 90, 0.16);
  backdrop-filter: blur(16px);
}

.product-stack article:nth-child(2) {
  transform: translateY(-28px);
}

.product-stack article:nth-child(3) {
  transform: translateY(18px);
}

.product-image {
  min-height: 155px;
  border-radius: 16px;
}

.product-one {
  background:
    radial-gradient(circle at 48% 36%, #fff 0 18%, transparent 19%),
    linear-gradient(150deg, #111, #7262ff 56%, #f1ddff);
}

.product-two {
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.96) 0 15%, transparent 16%),
    linear-gradient(150deg, #ff7f50, #ffd0b7 52%, #fff0d8);
}

.product-three {
  background:
    radial-gradient(circle at 54% 34%, rgba(255, 255, 255, 0.98) 0 17%, transparent 18%),
    linear-gradient(150deg, #73e4d6, #e7fff9 52%, #c9d3ff);
}

.product-stack p {
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 13px;
  font-weight: 750;
}

.product-stack strong {
  color: var(--black);
  font-size: 24px;
  font-weight: 700;
}

.cart-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(360px, 100%);
  margin-left: auto;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--black);
  color: white;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.cart-panel span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.cart-panel strong {
  font-size: 26px;
  line-height: 1;
}

.mock-content,
.mock-admin {
  align-content: end;
  gap: 12px;
  padding: clamp(30px, 4vw, 58px);
}

.mock-content {
  background: linear-gradient(145deg, #fff7df, #f3e6c8);
}

.mock-admin {
  background: linear-gradient(145deg, #e8ebef, #c9d0d7);
}

.mock-content span,
.mock-admin span {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 500;
}

.momentum {
  width: var(--page);
  margin: 0 auto;
  padding-bottom: clamp(95px, 12vw, 155px);
}

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

.pricing-grid article {
  display: grid;
  min-height: 430px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.pricing-grid article > p {
  color: rgba(255, 255, 255, 0.58);
}

.pricing-grid h3 {
  color: white;
  font-size: clamp(34px, 4vw, 54px);
}

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

.pricing-grid a {
  align-self: end;
  font-weight: 750;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(36px, 8vw, 110px);
  width: var(--page);
  margin: 0 auto;
  padding-bottom: clamp(95px, 12vw, 155px);
}

.faq h2 {
  max-width: 520px;
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 500;
  line-height: 1.05;
}

details {
  border-bottom: 1px solid var(--line-dark);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 19px;
  font-weight: 650;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  max-width: 640px;
  margin-bottom: 24px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(250px, 0.4fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: start;
  padding: clamp(64px, 9vw, 115px) max(16px, calc((100vw - 1320px) / 2));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: var(--paper);
  color: var(--black);
}

.final-cta::before {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.11), transparent);
}

.final-copy p {
  margin-top: 18px;
  color: var(--muted-light);
}

.final-cta h2 {
  max-width: 860px;
  margin-bottom: 30px;
  font-size: clamp(34px, 5vw, 74px);
  font-weight: 500;
  line-height: 1.05;
}

.final-form-wrap {
  max-width: 880px;
}

.contact-form {
  display: grid;
  gap: 14px;
  width: min(720px, 100%);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--black);
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  padding: 15px 16px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 0, 0, 0.4);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}

.contact-form button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 21px;
  margin: 0;
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.5;
}

.form-status.is-success {
  color: #176d37;
}

.form-status.is-error {
  color: #9d2018;
}

.form-honey {
  position: absolute;
  left: -10000px;
  opacity: 0;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  min-height: 520px;
  overflow: hidden;
  padding: 58px max(16px, calc((100vw - 1320px) / 2));
  background: var(--red);
  color: white;
}

.site-footer nav,
.site-footer div {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer nav a {
  width: fit-content;
  font-weight: 700;
}

.site-footer div {
  justify-items: end;
  text-align: right;
}

.site-footer p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-mark {
  position: absolute;
  left: clamp(12px, 4vw, 54px);
  bottom: -58px;
  color: rgba(255, 255, 255, 0.18);
  font-size: clamp(150px, 28vw, 420px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  transition:
    opacity 850ms ease,
    transform 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

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

.stagger-list > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 680ms ease,
    transform 820ms cubic-bezier(0.19, 1, 0.22, 1);
}

.is-visible .stagger-list > *,
.stagger-list.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.is-visible .stagger-list > *:nth-child(2),
.stagger-list.is-visible > *:nth-child(2) {
  transition-delay: 80ms;
}

.is-visible .stagger-list > *:nth-child(3),
.stagger-list.is-visible > *:nth-child(3) {
  transition-delay: 160ms;
}

.is-visible .stagger-list > *:nth-child(4),
.stagger-list.is-visible > *:nth-child(4) {
  transition-delay: 240ms;
}

.is-visible .stagger-list > *:nth-child(5),
.stagger-list.is-visible > *:nth-child(5) {
  transition-delay: 320ms;
}

.is-visible .stagger-list > *:nth-child(n + 6),
.stagger-list.is-visible > *:nth-child(n + 6) {
  transition-delay: 380ms;
}

.mock-dashboard span,
.mock-content span,
.mock-admin span,
.store-topline strong,
.cart-panel {
  animation: soft-float 6s ease-in-out infinite;
}

.mock-dashboard span:nth-child(2),
.mock-content span:nth-child(2),
.mock-admin span:nth-child(2) {
  animation-delay: -1.8s;
}

.mock-dashboard span:nth-child(3),
.mock-content span:nth-child(3),
.mock-admin span:nth-child(3) {
  animation-delay: -3.2s;
}

.product-stack article {
  animation: card-rise 7s ease-in-out infinite;
}

.product-stack article:nth-child(2) {
  animation-delay: -2.2s;
}

.product-stack article:nth-child(3) {
  animation-delay: -4.1s;
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes card-rise {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-14px) scale(1.015);
  }
}

@keyframes texture-drift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 64% 0, -46% 0, 180px 72px, -120px 90px;
  }
}

@keyframes hero-light-sweep {
  from {
    opacity: 0.78;
  }

  to {
    opacity: 1;
  }
}

@keyframes hero-plane {
  0%,
  100% {
    transform: rotate(-8deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-5deg) translate3d(-22px, -18px, 0);
  }
}

@keyframes hero-runner {
  from {
    transform: rotate(-8deg) translate3d(-24px, 0, 0) scaleX(0.82);
  }

  to {
    transform: rotate(-8deg) translate3d(32px, -18px, 0) scaleX(1.08);
  }
}

@keyframes hero-streak {
  0%,
  100% {
    opacity: 0;
    transform: rotate(-18deg) translate3d(-26px, 18px, 0) scaleX(0.45);
  }

  35%,
  68% {
    opacity: 0.76;
  }

  72% {
    transform: rotate(-18deg) translate3d(56px, -18px, 0) scaleX(1);
  }
}

.process-grid article,
.pricing-grid article,
.team-strip span,
.mock,
.button {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.process-grid article:hover,
.pricing-grid article:hover,
.mock:hover {
  transform: translateY(-4px);
}

.team-strip span:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

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

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

  .nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .header-tools {
    justify-self: end;
  }

  .menu-button {
    display: block;
  }

  .approach-panel,
  .dark-split,
  .team-strip,
  .section-title,
  .pricing-grid,
  .faq,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

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

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

  .mock {
    min-height: 430px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    min-height: 440px;
  }

  .site-footer div {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --page: min(100% - 24px, 1320px);
  }

  .site-header {
    padding-top: 14px;
  }

  .brand {
    padding-right: 10px;
  }

  .hero {
    min-height: 76svh;
    padding: 108px 12px 42px;
  }

  .hero-visual::before {
    top: 18%;
    right: -34vw;
    width: 78vw;
    height: 42vw;
  }

  .hero-visual::after {
    left: -20vw;
    bottom: 12%;
    width: 76vw;
  }

  .hero-visual span {
    width: 46vw;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1;
  }

  .hero p:not(.kicker) {
    font-size: 15px;
  }

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

  .approach-panel {
    grid-template-columns: 1fr;
    margin-top: -18px;
    padding: 28px 18px;
    border-radius: 18px;
  }

  .panel-main h2 {
    font-size: 30px;
  }

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

  .process-grid article {
    min-height: 0;
  }

  .dark-split,
  .team-strip,
  .systems,
  .momentum,
  .faq {
    padding-bottom: 86px;
  }

  .dark-split {
    padding-top: 86px;
  }

  .dark-split h2,
  .team-strip h2,
  .faq h2 {
    font-size: 34px;
  }

  .section-title h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .mock {
    min-height: 360px;
  }

  .mock-store {
    gap: 18px;
    padding: 22px;
  }

  .store-topline {
    display: grid;
  }

  .store-topline strong {
    max-width: 100%;
    font-size: 36px;
    text-align: left;
  }

  .product-stack {
    display: flex;
    gap: 12px;
    margin: 0 -22px;
    padding: 2px 22px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .product-stack article {
    min-width: 190px;
    min-height: 250px;
    scroll-snap-align: start;
  }

  .product-stack article:nth-child(2),
  .product-stack article:nth-child(3) {
    transform: none;
  }

  .product-image {
    min-height: 140px;
  }

  .cart-panel {
    width: 100%;
    margin-left: 0;
  }

  .pricing-grid article {
    min-height: 0;
  }

  .final-cta {
    padding: 54px 12px;
  }

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

  .contact-form button {
    width: 100%;
  }

  .site-footer {
    padding: 42px 12px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .stagger-list > * {
    opacity: 1;
    transform: none;
  }

  .hero-inner,
  .hero-visual,
  .approach-panel {
    transform: none;
  }
}
