:root {
  --ink: #0d0d0a;
  --ink-soft: #181812;
  --bone: #f4efe3;
  --bone-muted: #d8d0c0;
  --stone: #9f9888;
  --line: rgba(244, 239, 227, 0.15);
  --line-dark: rgba(13, 13, 10, 0.12);
  --signal: #1f6bff;
  --signal-soft: rgba(31, 107, 255, 0.18);
  --clay: #f0652f;
  --max: 1180px;
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
  --font: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--bone);
  background:
    radial-gradient(circle at 12% 2%, rgba(31, 107, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 90% 18%, rgba(240, 101, 47, 0.11), transparent 28rem),
    linear-gradient(180deg, #0d0d0a 0%, #12120e 46%, #0d0d0a 100%);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.65'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.cursor-glow {
  position: fixed;
  width: 34rem;
  height: 34rem;
  margin-left: -17rem;
  margin-top: -17rem;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(31, 107, 255, 0.14), rgba(31, 107, 255, 0.045) 36%, transparent 68%);
  filter: blur(8px);
  transform: translate3d(50vw, 40vh, 0);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 999;
  background: transparent;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--signal), var(--clay));
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid rgba(244, 239, 227, 0.13);
  border-radius: 999px;
  background: rgba(13, 13, 10, 0.54);
  backdrop-filter: blur(22px);
  transition: border-color 260ms ease, background 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 13, 10, 0.78);
  border-color: rgba(244, 239, 227, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.brand img {
  width: 30px;
  height: 30px;
}

nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: rgba(244, 239, 227, 0.72);
  font-size: 0.88rem;
}

nav a,
.site-footer a {
  transition: color 180ms ease;
}

nav a:hover,
.site-footer a:hover {
  color: var(--signal);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--bone);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--signal);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.section-pad {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 118px 0;
}

.section-pad.slim {
  padding: 88px 0;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
  padding-top: 160px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 26px;
  max-width: 720px;
  font-size: clamp(3.35rem, 7.6vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: -0.062em;
  font-weight: 640;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5.4vw, 5.7rem);
  line-height: 0.9;
  letter-spacing: -0.074em;
  font-weight: 620;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  font-weight: 650;
}

.hero-lead,
.intro-text p,
.showcase-copy p,
.fit-card p,
.founder-copy p,
.contact-copy p {
  color: rgba(244, 239, 227, 0.72);
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--signal);
  box-shadow: 0 18px 44px rgba(31, 107, 255, 0.24);
}

.button-secondary {
  color: var(--bone);
  border-color: rgba(244, 239, 227, 0.18);
  background: rgba(244, 239, 227, 0.06);
}

.hero-visual {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shape-stage {
  position: relative;
  width: min(100%, 560px);
  min-height: 620px;
  aspect-ratio: 0.9;
  border: 1px solid var(--line);
  border-radius: 48px;
  background:
    linear-gradient(rgba(244, 239, 227, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 227, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 46% 24%, rgba(31, 107, 255, 0.2), transparent 34%),
    radial-gradient(circle at 82% 82%, rgba(240, 101, 47, 0.14), transparent 34%),
    rgba(244, 239, 227, 0.045);
  background-size: 42px 42px, 42px 42px, 100% 100%, 100% 100%, 100% 100%;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  overflow: hidden;
}

.system-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.simple-system {
  min-height: 520px;
  aspect-ratio: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.simple-system::before {
  content: "";
  position: absolute;
  inset: 8% 0;
  border-radius: 999px;
  background: radial-gradient(circle at 52% 50%, rgba(31, 107, 255, 0.18), transparent 58%);
  filter: blur(28px);
  opacity: 0.9;
  pointer-events: none;
}

.simple-system .system-flow {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  width: 100%;
}

.system-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 124px;
  padding: 22px;
  border: 1px solid rgba(244, 239, 227, 0.16);
  border-radius: 28px;
  color: var(--bone);
  background: rgba(13, 13, 10, 0.64);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
  animation: floatCard 7s ease-in-out infinite;
  transition: transform 220ms ease, opacity 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.system-flow:hover .system-card,
.system-card.is-active {
  animation: none;
}

.system-flow.has-active .system-card:not(.is-active) {
  opacity: 0.58;
  transform: translate3d(0, 0, 0) scale(0.985);
  border-color: rgba(244, 239, 227, 0.1);
  background: rgba(13, 13, 10, 0.48);
}

.system-card.is-active,
.system-card:hover {
  animation: none;
  opacity: 1;
  transform: translate3d(0, -6px, 0) scale(1.018);
  border-color: rgba(31, 107, 255, 0.52);
  background: linear-gradient(135deg, rgba(31, 107, 255, 0.94), rgba(31, 107, 255, 0.36));
  box-shadow: 0 30px 78px rgba(31, 107, 255, 0.2), 0 20px 54px rgba(0, 0, 0, 0.24);
}

.system-card:nth-child(2) {
  animation-delay: -1.6s;
}

.system-card:nth-child(3) {
  animation-delay: -3.1s;
}

.system-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: var(--ink);
  background: var(--bone);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.system-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  font-weight: 640;
}

.system-card p {
  margin: 0;
  color: rgba(244, 239, 227, 0.68);
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  line-height: 1.38;
  letter-spacing: -0.018em;
}

.system-card.is-active p,
.system-card:hover p {
  color: rgba(244, 239, 227, 0.86);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.8fr;
  gap: 56px;
  align-items: start;
}

.split h2 {
  margin-bottom: 0;
}

.intro {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 64px;
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-text p:last-child,
.showcase-copy p:last-child,
.fit-card p:last-child,
.founder-copy p:last-child,
.contact-copy p:last-child {
  margin-bottom: 0;
}

.clients {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.section-head {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto 44px;
}

.section-head h2 {
  max-width: 980px;
}

.client-marquee {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 227, 0.04);
}

.client-marquee::before,
.client-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 14vw;
  height: 100%;
  pointer-events: none;
}

.client-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), transparent);
}

.client-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink), transparent);
}

.client-track {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  padding: 22px 12px;
  animation: marquee 36s linear infinite;
}

.client-track:hover {
  animation-play-state: paused;
}

.client-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 0 32px;
  border: 1px solid rgba(244, 239, 227, 0.12);
  border-radius: 18px;
  color: rgba(244, 239, 227, 0.78);
  background: rgba(13, 13, 10, 0.36);
  font-size: clamp(1.05rem, 2vw, 1.7rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  white-space: nowrap;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.client-track span:hover {
  color: var(--bone);
  transform: translateY(-2px);
  border-color: rgba(31, 107, 255, 0.38);
  background: rgba(31, 107, 255, 0.1);
}

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

.work-card,
.step,
.fit-card,
.contact-form,
.showcase-panel,
.founder-media {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(244, 239, 227, 0.072), rgba(244, 239, 227, 0.035));
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.18);
}

.work-card {
  min-height: 330px;
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 107, 255, 0.38);
  background: linear-gradient(180deg, rgba(31, 107, 255, 0.14), rgba(244, 239, 227, 0.04));
}

.card-index,
.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  margin-bottom: 88px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--signal);
  font-size: 0.8rem;
  font-weight: 800;
}

.work-card p,
.step p {
  margin: 0;
  color: rgba(244, 239, 227, 0.64);
  line-height: 1.55;
}

.showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.showcase-panel {
  position: relative;
  min-height: 640px;
  padding: 24px;
  border-radius: 46px;
  overflow: hidden;
  background:
    linear-gradient(rgba(244, 239, 227, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 227, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 239, 227, 0.07), rgba(244, 239, 227, 0.025));
  background-size: 34px 34px, 34px 34px, 100% 100%;
  transform-style: preserve-3d;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  color: rgba(244, 239, 227, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mockup-stack {
  position: absolute;
  inset: 84px 30px 30px;
}

.mockup {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  color: var(--ink);
  background: var(--bone);
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.32);
}

.mockup span,
.mockup small {
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mockup strong {
  max-width: 260px;
  font-size: 2.6rem;
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 650;
}

.mockup-label {
  top: 2%;
  left: 3%;
  width: 46%;
  height: 48%;
  border-radius: 30px;
  transform: rotate(-8deg);
}

.mockup-menu {
  top: 18%;
  right: 4%;
  width: 48%;
  height: 62%;
  border-radius: 32px;
  background: var(--signal);
  transform: rotate(7deg);
}

.mockup-bag {
  left: 18%;
  bottom: 2%;
  width: 58%;
  height: 34%;
  border-radius: 34px;
  background: #f6f0dd;
  transform: rotate(-2deg);
}

.showcase-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.showcase-copy li {
  display: flex;
  gap: 12px;
  color: rgba(244, 239, 227, 0.72);
  font-size: 1.05rem;
}

.showcase-copy li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--signal);
}

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

.step {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.step span {
  margin-bottom: 110px;
}

.fit-card {
  padding: clamp(28px, 5vw, 58px);
  border-radius: 44px;
  background:
    radial-gradient(circle at 94% 18%, rgba(31, 107, 255, 0.22), transparent 27rem),
    linear-gradient(180deg, rgba(244, 239, 227, 0.076), rgba(244, 239, 227, 0.035));
}

.fit-card h2 {
  max-width: 860px;
}

.fit-card p {
  max-width: 780px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.tags span {
  padding: 11px 14px;
  border: 1px solid rgba(244, 239, 227, 0.13);
  border-radius: 999px;
  color: rgba(244, 239, 227, 0.78);
  background: rgba(13, 13, 10, 0.28);
  font-size: 0.92rem;
}

.founder {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.founder-media {
  position: relative;
  min-height: 620px;
  padding: 18px;
  border-radius: 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(31, 107, 255, 0.22), transparent 20rem),
    radial-gradient(circle at 88% 76%, rgba(240, 101, 47, 0.16), transparent 22rem),
    linear-gradient(180deg, rgba(244, 239, 227, 0.07), rgba(244, 239, 227, 0.03));
  transform-style: preserve-3d;
}

.founder-media img {
  width: 100%;
  height: 100%;
  min-height: 584px;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid rgba(244, 239, 227, 0.12);
  background: rgba(13, 13, 10, 0.34);
}

.founder-caption {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 38px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(244, 239, 227, 0.16);
  border-radius: 24px;
  background: rgba(13, 13, 10, 0.58);
  backdrop-filter: blur(18px);
}

.founder-caption span {
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-caption strong {
  max-width: 220px;
  font-size: 1.35rem;
  line-height: 1;
  text-align: right;
  letter-spacing: -0.045em;
}

.founder-copy h2 {
  max-width: 920px;
}

.hidden-field {
  display: none;
}

.contact {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 140px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 34px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(244, 239, 227, 0.72);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 239, 227, 0.14);
  border-radius: 18px;
  color: var(--bone);
  background: rgba(13, 13, 10, 0.5);
  outline: none;
  padding: 16px 16px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(31, 107, 255, 0.56);
  background: rgba(13, 13, 10, 0.72);
  box-shadow: 0 0 0 4px rgba(31, 107, 255, 0.11);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  border: 0;
}

.site-footer {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 36px 0 54px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: rgba(244, 239, 227, 0.72);
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--bone);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes morph {
  0% {
    border-radius: 42% 58% 62% 38% / 46% 48% 52% 54%;
    transform: rotate(-9deg) scale(0.95);
  }
  50% {
    border-radius: 62% 38% 36% 64% / 42% 64% 36% 58%;
    transform: rotate(6deg) scale(1.02);
  }
  100% {
    border-radius: 38% 62% 50% 50% / 64% 38% 62% 36%;
    transform: rotate(12deg) scale(0.98);
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes floatPath {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(8px, -10px);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translate3d(0, 0, 80px);
  }
  50% {
    transform: translate3d(0, -12px, 80px);
  }
}

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

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

  nav {
    display: none;
  }

  .hero,
  .intro,
  .showcase,
  .founder,
  .contact,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    padding-top: 138px;
  }

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

  .shape-stage {
    width: min(100%, 620px);
  }

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

  .work-card,
  .step {
    min-height: 250px;
  }

  .card-index,
  .step span {
    margin-bottom: 60px;
  }

  .contact-copy {
    position: static;
  }
}

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

  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    padding: 10px;
  }

  .brand span {
    font-size: 0.86rem;
  }

  .nav-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .section-pad,
  .section-pad.slim {
    width: min(calc(100% - 24px), var(--max));
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.8rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }


  .system-stage {
    min-height: auto;
    aspect-ratio: auto;
    padding: 16px;
    border-radius: 34px;
  }

  .simple-system .system-flow {
    gap: 12px;
  }

  .system-card {
    min-height: 108px;
    padding: 17px;
    border-radius: 22px;
  }

  .system-number {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .system-card h3 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  .system-card p {
    font-size: 0.9rem;
  }

  .clients {
    padding: 70px 0;
  }

  .section-head {
    width: min(calc(100% - 24px), var(--max));
  }

  .client-track span {
    min-height: 66px;
    padding: 0 22px;
    font-size: 1.05rem;
  }

  .founder-media {
    min-height: 480px;
    border-radius: 34px;
  }

  .founder-media img {
    min-height: 444px;
    border-radius: 24px;
  }

  .founder-caption {
    left: 28px;
    right: 28px;
    bottom: 28px;
    flex-direction: column;
    align-items: start;
  }

  .founder-caption strong {
    text-align: left;
  }

  .showcase-panel {
    min-height: 520px;
    border-radius: 34px;
  }

  .mockup {
    padding: 18px;
  }

  .mockup strong {
    font-size: 1.75rem;
  }

  .mockup-label {
    width: 58%;
    height: 42%;
  }

  .mockup-menu {
    top: 24%;
    width: 56%;
    height: 48%;
  }

  .mockup-bag {
    left: 7%;
    width: 78%;
    height: 30%;
  }

  .site-footer {
    width: min(calc(100% - 24px), var(--max));
    flex-direction: column;
  }
}

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

  .cursor-glow {
    display: none;
  }
}

.success {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.success-brand {
  margin-bottom: 46px;
}

.success h1 {
  max-width: 920px;
}
