:root {
  --ink: #050716;
  --ink-2: #090c26;
  --navy: #0d1052;
  --cobalt: #315cff;
  --signal: #ddf247;
  --orange: #ff6a3d;
  --cream: #f4f0e7;
  --paper: #fffdf6;
  --white: #ffffff;
  --muted: #aab2ca;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(5, 7, 22, 0.16);
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Source Sans 3", sans-serif;
  --shell: min(1240px, calc(100% - 48px));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --z-base: 0;
  --z-content: 10;
  --z-card: 20;
  --z-header: 100;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

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

.section {
  position: relative;
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

main section[id]:not(#top) {
  scroll-margin-top: 88px;
}

.skip-link {
  position: fixed;
  z-index: 1001;
  top: 0.8rem;
  left: 0.8rem;
  transform: translateY(-150%);
  border: 2px solid var(--ink);
  padding: 0.75rem 1rem;
  background: var(--signal);
  color: var(--ink);
  font-weight: 800;
}

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

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--signal);
}

.eyebrow-line {
  width: 26px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px solid transparent;
  padding: 0.85rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 220ms var(--ease), background-color 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button svg,
.nav-cta svg,
.demo-tab svg,
.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
}

.button-signal {
  background: var(--signal);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--orange);
}

.button-signal:hover {
  box-shadow: 3px 3px 0 var(--orange);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

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

.button-dark:hover {
  background: var(--navy);
}

/* Header */

.site-header {
  position: sticky;
  z-index: var(--z-header);
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 7, 22, 0.88);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-emblem {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.brand-type {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.025em;
}

.brand-owner {
  margin-top: 0.22rem;
  color: #a9b2d0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #cbd2e7;
  font-size: 0.86rem;
  font-weight: 700;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--signal);
  transition: transform 240ms var(--ease);
}

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

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

.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.nav-cta svg {
  width: 18px;
  height: 18px;
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100dvh - 78px);
  overflow: clip;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 84% 20%, rgba(49, 92, 255, 0.27), transparent 32%),
    linear-gradient(135deg, var(--ink) 0%, #0b0f38 58%, #111865 100%);
  background-size: 64px 64px, 64px 64px, auto, auto;
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -4vw;
  bottom: -8vw;
  width: 28vw;
  height: 28vw;
  border: 1px solid rgba(221, 242, 71, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.hero-glow-one {
  top: 11%;
  left: -10%;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.14), transparent 66%);
}

.hero-glow-two {
  right: 10%;
  bottom: -25%;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(221, 242, 71, 0.1), transparent 67%);
}

.hero-grid {
  position: relative;
  z-index: var(--z-content);
  min-height: calc(100dvh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
  padding-block: clamp(5rem, 8vw, 8rem);
}

.hero-copy {
  position: relative;
  z-index: 30;
}

.hero-eyebrow {
  margin-bottom: 1.35rem;
  color: #91cfff;
}

.hero h1 {
  max-width: 690px;
  font-family: var(--display);
  font-size: clamp(4.3rem, 6.2vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--orange);
  text-shadow: 5px 5px 0 rgba(221, 242, 71, 0.12);
}

.hero-lede {
  max-width: 620px;
  margin-top: 1.65rem;
  color: #cbd3e8;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.hero-lede strong,
.hero-lede span {
  color: var(--white);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-offer-note {
  max-width: 620px;
  margin-top: 1.45rem;
  border-left: 3px solid var(--signal);
  padding: 0.65rem 0 0.65rem 0.85rem;
  color: #929dbb;
  font-size: 0.72rem;
  line-height: 1.55;
}

.hero-offer-note strong {
  color: var(--signal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-proof {
  max-width: 630px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof div {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.8rem 1rem;
}

.hero-proof div:first-child {
  padding-left: 0;
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  color: var(--signal);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.hero-proof span {
  margin-top: 0.2rem;
  color: #aab4d0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-orbit {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 610px;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  animation: orbit-in 900ms 140ms var(--ease) both;
  transition: transform 180ms ease-out;
}

.orbit-grid {
  position: absolute;
  inset: 2.5rem 0 0 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: rotate(3deg);
}

.santos-frame {
  position: absolute;
  z-index: 4;
  top: 5.5rem;
  left: 50%;
  width: min(68%, 420px);
  height: 470px;
  overflow: hidden;
  transform: translateX(-50%) rotate(-2deg);
  border: 2px solid rgba(255, 255, 255, 0.42);
  background: #151b44;
  box-shadow: 20px 24px 0 rgba(5, 7, 22, 0.68);
}

.santos-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(5, 7, 22, 0.96), transparent 56%);
}

.santos-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.santos-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
}

.santos-frame figcaption span {
  display: block;
  color: var(--signal);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.santos-frame figcaption strong {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--display);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.hero-site-card {
  position: absolute;
  z-index: var(--z-card);
  width: 250px;
  overflow: hidden;
  border: 2px solid var(--white);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 12px 14px 0 rgba(5, 7, 22, 0.75);
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}

.hero-site-card:hover {
  z-index: 25;
  box-shadow: 7px 9px 0 rgba(5, 7, 22, 0.8);
}

.hero-site-card > img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.card-restaurant {
  top: 0;
  left: -2rem;
  transform: rotate(-6deg);
}

.card-restaurant:hover {
  transform: rotate(-2deg) translateY(-8px);
}

.card-auto {
  top: 8rem;
  right: -2.25rem;
  transform: rotate(6deg);
}

.card-auto:hover {
  transform: rotate(2deg) translateY(-8px);
}

.card-barber {
  bottom: -1rem;
  left: 1rem;
  transform: rotate(4deg);
}

.card-barber:hover {
  transform: rotate(1deg) translateY(-8px);
}

.mini-browser {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-inline: 0.55rem;
  background: var(--cream);
}

.mini-browser i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a9aec0;
}

.mini-browser span {
  min-width: 0;
  margin-left: 0.25rem;
  overflow: hidden;
  color: #4e566d;
  font-size: 0.55rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-card-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem 0.75rem;
}

.mini-card-copy span {
  color: #667086;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-card-copy strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.orbit-status {
  position: absolute;
  z-index: 26;
  right: 0.35rem;
  bottom: 1.2rem;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding-inline: 0.8rem;
  background: rgba(5, 7, 22, 0.84);
  backdrop-filter: blur(12px);
}

.orbit-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(221, 242, 71, 0.12);
}

.orbit-status span,
.orbit-status strong {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.orbit-status span {
  color: #b8c0d8;
}

.orbit-status strong {
  color: var(--signal);
}

.merchant-marquee {
  position: relative;
  z-index: 40;
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--signal);
  color: var(--ink);
  animation: marquee-drop 650ms 500ms var(--ease) both;
}

.marquee-track {
  width: max-content;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-inline: 1.25rem;
  animation: marquee-scroll 24s linear 2;
}

.marquee-track span {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track i {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: var(--orange);
}

/* Complete merchant setup */

.setup-section {
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(rgba(13, 16, 82, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 16, 82, 0.07) 1px, transparent 1px),
    var(--cream);
  background-size: 48px 48px, 48px 48px, auto;
}

.setup-orbit {
  position: absolute;
  top: -15rem;
  right: -12rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(49, 92, 255, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(49, 92, 255, 0.035),
    0 0 0 10rem rgba(49, 92, 255, 0.022);
  pointer-events: none;
}

.setup-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
}

.setup-heading h2 {
  margin-top: 1.25rem;
}

.setup-heading > p {
  max-width: 510px;
  margin-bottom: 0.45rem;
  color: #50596c;
  font-size: 1.04rem;
  line-height: 1.7;
}

.setup-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr) 56px minmax(0, 1fr);
  align-items: stretch;
  margin-top: 4.5rem;
  border: 2px solid var(--ink);
  background: var(--ink);
  box-shadow: 14px 15px 0 var(--orange);
}

.setup-pillar {
  min-height: 405px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: var(--paper);
  color: var(--ink);
}

.setup-website {
  background: var(--signal);
}

.setup-payments {
  background: var(--cobalt);
  color: var(--white);
}

.setup-pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.85rem;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.setup-pillar-top strong {
  border: 1px solid currentColor;
  padding: 0.3rem 0.45rem;
  font-size: 0.57rem;
}

.setup-pillar > svg {
  width: 66px;
  height: 66px;
  margin-top: auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
}

.setup-pillar h3 {
  margin-top: 1.45rem;
  font-family: var(--display);
  font-size: clamp(3.5rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 0.84;
  text-transform: uppercase;
}

.setup-pillar p {
  margin-top: 1.15rem;
  color: #50596c;
  font-size: 0.9rem;
  line-height: 1.65;
}

.setup-website p {
  color: #343928;
}

.setup-payments p {
  color: #d5dcf5;
}

.setup-join {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--signal);
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 1;
}

.setup-handoff {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  margin-top: 2.7rem;
  border: 2px solid var(--ink);
  border-left: 10px solid var(--cobalt);
  padding: 1.25rem;
  background: var(--paper);
  box-shadow: 9px 10px 0 var(--signal);
}

.setup-handoff p {
  max-width: 790px;
  color: #4c5569;
  font-size: 0.88rem;
  line-height: 1.65;
}

.setup-handoff strong {
  color: var(--ink);
}

/* Real client work */

.real-work-section {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(rgba(221, 242, 71, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 242, 71, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 92% 5%, rgba(255, 106, 61, 0.17), transparent 27%),
    var(--ink);
  background-size: 52px 52px, 52px 52px, auto, auto;
  color: var(--white);
}

.real-work-glow {
  position: absolute;
  top: 10rem;
  right: -13rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(221, 242, 71, 0.23);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(221, 242, 71, 0.025),
    0 0 0 10rem rgba(221, 242, 71, 0.018);
  pointer-events: none;
}

.real-work-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 4rem;
}

.real-work-heading h2 {
  max-width: 900px;
  margin: 1.3rem 0 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(4.8rem, 8.4vw, 8.8rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.real-work-heading h2 em {
  color: var(--signal);
  font-style: normal;
}

.real-work-heading > p {
  max-width: 510px;
  margin: 0 0 0.55rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.real-projects {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
}

.real-project {
  --project-accent: var(--orange);
  --project-surface: #f8c83f;
  --project-shadow: #ddf247;
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(4.5rem, 8vw, 7rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.real-project:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.project-dejesus {
  --project-accent: #b72f2f;
  --project-surface: #f4e7d0;
  --project-shadow: #ff6a3d;
  grid-template-columns: minmax(0, 1.28fr) minmax(290px, 0.72fr);
}

.project-dejesus .project-copy {
  order: 2;
}

.project-copy {
  position: relative;
  z-index: 3;
}

.project-number {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--project-shadow);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.project-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(221, 242, 71, 0.12);
}

.project-copy h3 {
  max-width: 570px;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(4.4rem, 7vw, 7.5rem);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.project-description {
  max-width: 520px;
  margin: 1.7rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.project-tags li {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.55rem 0.68rem;
  color: rgba(255, 255, 255, 0.83);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 48px;
  margin-top: 2rem;
  border-bottom: 2px solid var(--project-shadow);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.project-link .arrow {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.project-link:hover .arrow,
.project-link:focus-visible .arrow {
  transform: translateX(4px);
}

.project-stage {
  position: relative;
  min-height: 535px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(rgba(5, 7, 22, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 7, 22, 0.12) 1px, transparent 1px),
    var(--project-surface);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 16px 17px 0 var(--project-shadow);
}

.project-browser,
.project-phone {
  margin: 0;
}

.project-browser {
  position: absolute;
  top: 50%;
  right: 4.5rem;
  left: 2rem;
  overflow: hidden;
  transform: translateY(-50%);
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 14px 15px 0 rgba(5, 7, 22, 0.45);
}

.project-browser-bar {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  min-height: 38px;
  border-bottom: 2px solid var(--ink);
  padding-inline: 0.7rem;
  background: var(--white);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.project-dots {
  display: flex;
  gap: 5px;
}

.project-dots i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
}

.project-dots i:nth-child(2) {
  background: var(--signal);
}

.project-dots i:nth-child(3) {
  background: var(--white);
}

.project-browser > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top;
}

.project-phone {
  position: absolute;
  right: -1.65rem;
  bottom: -1.7rem;
  z-index: 3;
  width: min(29%, 178px);
  overflow: hidden;
  border: 7px solid var(--ink);
  border-radius: 28px;
  background: var(--ink);
  box-shadow: 10px 11px 0 rgba(5, 7, 22, 0.48);
}

.project-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 44%;
  height: 13px;
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
  background: var(--ink);
}

.project-phone img {
  display: block;
  width: 100%;
  height: auto;
}

.project-stamp {
  position: absolute;
  top: -2.8rem;
  right: -2.8rem;
  z-index: 4;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  transform: rotate(9deg);
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--project-shadow);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.16rem;
  line-height: 0.92;
  text-align: center;
  box-shadow: 6px 6px 0 var(--project-accent);
}

.portfolio-boundary {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 4rem auto 0;
  border: 1px solid rgba(221, 242, 71, 0.42);
  border-left: 7px solid var(--signal);
  padding: 1.25rem 1.4rem;
  background: rgba(221, 242, 71, 0.065);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}

.portfolio-boundary strong {
  color: var(--signal);
}

.mobile-action-dock {
  display: none;
}

/* Work */

.work-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 16%, rgba(255, 106, 61, 0.12), transparent 25%),
    linear-gradient(rgba(13, 16, 82, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 16, 82, 0.055) 1px, transparent 1px),
    var(--cream);
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.work-orb {
  position: absolute;
  top: 17%;
  right: -11rem;
  width: 28rem;
  height: 28rem;
  border: 44px solid rgba(49, 92, 255, 0.08);
  border-radius: 50%;
}

.section-heading {
  max-width: 850px;
}

.section-heading h2,
.setup-heading h2,
.services-intro h2,
.about-main h2,
.commerce-copy h2,
.process-heading h2,
.faq-heading h2,
.contact-copy h2 {
  margin-top: 1.15rem;
  font-family: var(--display);
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.86;
  text-transform: uppercase;
}

.section-heading h2 em,
.setup-heading h2 em,
.services-intro h2 em,
.about-main h2 em,
.commerce-copy h2 em,
.process-heading h2 em,
.faq-heading h2 em {
  color: var(--cobalt);
  font-style: normal;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin-top: 1.25rem;
  color: #4d566d;
  font-size: 1.08rem;
}

.work-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(3rem, 7vw, 6rem);
}

.demo-rail {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.demo-tab {
  min-height: 70px;
  width: 100%;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid var(--ink);
  padding: 0.8rem 0.9rem;
  background: rgba(255, 253, 246, 0.72);
  color: var(--ink);
  text-align: left;
  box-shadow: 5px 5px 0 transparent;
  transition: transform 200ms var(--ease), background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.demo-tab:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(5, 7, 22, 0.18);
}

.demo-tab[aria-pressed="true"] {
  transform: translate(-3px, -3px);
  background: var(--ink);
  color: var(--white);
  box-shadow: 7px 7px 0 var(--orange);
}

.demo-number {
  color: #6e7890;
  font-size: 0.68rem;
  font-weight: 800;
}

.demo-tab[aria-pressed="true"] .demo-number {
  color: var(--signal);
}

.demo-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.demo-type {
  display: block;
  margin-top: 0.3rem;
  color: #727b91;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.demo-tab[aria-pressed="true"] .demo-type {
  color: #bdc5dc;
}

.demo-tab svg {
  width: 20px;
  height: 20px;
}

.showcase-wrap {
  position: relative;
  min-width: 0;
}

.showcase-stamp {
  position: absolute;
  z-index: 50;
  top: -2.2rem;
  right: 1.1rem;
  width: 82px;
  height: 82px;
  display: grid;
  place-content: center;
  transform: rotate(8deg);
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  text-align: center;
  box-shadow: 5px 5px 0 var(--ink);
}

.showcase-stamp span,
.showcase-stamp strong {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.showcase-stamp strong {
  margin-top: 0.1rem;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
}

.preview-stage {
  --store-accent: #ef4f32;
  position: relative;
  min-height: 680px;
  padding: 1.3rem 4.3rem 4.5rem 0;
}

.browser-shell {
  position: relative;
  z-index: 2;
  overflow: hidden;
  transform: rotate(-1.25deg);
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 18px 20px 0 var(--ink);
  transition: transform 350ms var(--ease);
}

.preview-stage:hover .browser-shell {
  transform: rotate(0deg) translateY(-4px);
}

.browser-bar {
  min-height: 54px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 70px;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 2px solid var(--ink);
  padding: 0.55rem 0.8rem;
  background: var(--cream);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b5bbca;
}

.browser-dots i:first-child {
  background: var(--orange);
}

.address-bar {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cbd0dc;
  padding: 0.45rem 0.75rem;
  background: var(--white);
  color: #465069;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.secure-mark {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  color: #40556a;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.secure-mark i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #30af73;
}

.storefront {
  background: var(--paper);
}

.storefront-hero {
  position: relative;
  min-height: 405px;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.storefront-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #cfd4de;
  transition: transform 700ms var(--ease), opacity 180ms ease;
}

.storefront-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(5, 7, 22, 0.96), rgba(5, 7, 22, 0.08) 70%);
}

.browser-shell:hover .storefront-hero > img {
  transform: scale(1.035);
}

.storefront-hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(1.6rem, 4vw, 3.5rem);
  color: var(--white);
  transition: opacity 180ms ease, transform 260ms var(--ease);
}

.storefront-badge {
  display: inline-flex;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 0.35rem 0.65rem;
  background: var(--store-accent);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.storefront-name {
  max-width: 660px;
  font-family: var(--display);
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.82;
  text-transform: uppercase;
}

.storefront-tagline {
  max-width: 560px;
  margin-top: 0.85rem;
  color: #e1e5ef;
  font-size: 0.9rem;
}

.storefront-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  padding: 1.35rem 1.5rem;
}

.preview-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.preview-service {
  min-width: 0;
  border-left: 2px solid var(--store-accent);
  padding-left: 0.7rem;
}

.preview-service span {
  display: block;
  overflow: hidden;
  font-size: 0.68rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-service strong {
  display: block;
  margin-top: 0.18rem;
  color: #505a6f;
  font-size: 0.64rem;
}

.preview-action {
  display: inline-block;
  min-height: 46px;
  border: 0;
  padding: 0.65rem 1rem;
  background: var(--store-accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  cursor: default;
  transition: filter 180ms ease, transform 180ms ease;
}

.preview-action:hover {
  transform: translateY(-2px);
  filter: brightness(0.9);
}

.preview-stage.is-switching .storefront-hero > img,
.preview-stage.is-switching .storefront-hero-copy {
  opacity: 0.25;
  transform: translateY(8px);
}

.phone-shell {
  position: absolute;
  z-index: 12;
  right: 0;
  bottom: 0;
  width: 210px;
  overflow: hidden;
  border: 8px solid var(--ink);
  border-radius: 2rem;
  background: var(--ink);
  box-shadow: 8px 10px 0 rgba(49, 92, 255, 0.32);
}

.phone-top {
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--ink);
}

.phone-notch {
  width: 74px;
  height: 10px;
  border-radius: 99px;
  background: #01020a;
}

.phone-screen {
  overflow: hidden;
  border-radius: 1.25rem;
  background: var(--paper);
}

.phone-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.phone-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(5, 7, 22, 0.72), transparent);
}

.phone-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-copy {
  padding: 0.85rem 0.85rem 0.65rem;
}

.phone-copy strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.phone-copy span {
  display: block;
  margin-top: 0.45rem;
  color: #606a80;
  font-size: 0.65rem;
  line-height: 1.35;
}

.phone-details {
  display: grid;
  gap: 0.35rem;
  padding-inline: 0.85rem;
}

.phone-details i {
  height: 5px;
  background: #e1e3e9;
}

.phone-details i:nth-child(2) {
  width: 76%;
}

.phone-details i:nth-child(3) {
  width: 55%;
}

.phone-action {
  min-height: 38px;
  display: grid;
  place-items: center;
  margin: 0.8rem;
  background: var(--store-accent);
  color: var(--white);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 800;
}

.concept-note {
  max-width: 680px;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-top: 2rem;
  color: #586177;
  font-size: 0.78rem;
  line-height: 1.5;
}

.concept-icon {
  width: 22px;
  height: 22px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.7rem;
  font-style: italic;
  font-weight: 800;
}

/* Services */

.services-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 12%, rgba(49, 92, 255, 0.3), transparent 29%),
    linear-gradient(145deg, #080a1b 0%, #0a0d26 48%, #111754 100%);
  color: var(--white);
}

.services-section::after {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 23rem;
  height: 23rem;
  border: 1px solid rgba(221, 242, 71, 0.2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 3rem rgba(221, 242, 71, 0.025), 0 0 0 6rem rgba(221, 242, 71, 0.018);
}

.services-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: end;
}

.services-intro h2 {
  color: var(--white);
}

.services-intro h2 em {
  color: var(--signal);
}

.services-intro > p {
  max-width: 470px;
  color: #b7bfd4;
  font-size: 1.08rem;
}

.service-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4.5rem;
}

.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 240ms var(--ease), border-color 240ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
}

.service-card-number {
  display: block;
  color: var(--signal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card h3 {
  max-width: 510px;
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.service-card p {
  max-width: 570px;
  margin-top: 0.85rem;
  color: #c7cee0;
}

.service-featured {
  min-height: 430px;
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-rows: auto 1fr;
  gap: 1.5rem 3rem;
  background: var(--signal);
  color: var(--ink);
}

.service-featured .service-card-number {
  grid-column: 1 / -1;
  color: var(--navy);
}

.service-featured .service-copy {
  align-self: end;
}

.service-featured .service-copy p {
  color: #242a3e;
}

.browser-visual {
  align-self: stretch;
  border: 2px solid var(--ink);
  padding: 1.25rem;
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--orange);
}

.visual-top {
  display: flex;
  gap: 0.4rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.8rem;
}

.visual-top i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.visual-top i:nth-child(2) {
  background: var(--cobalt);
}

.visual-top i:nth-child(3) {
  background: var(--signal);
}

.visual-headline {
  width: 78%;
  height: 62px;
  margin-top: 1.5rem;
  background: var(--navy);
}

.visual-copy {
  width: 58%;
  height: 12px;
  margin-top: 1rem;
  background: #a7afc2;
  box-shadow: 0 19px 0 #d1d5df;
}

.visual-button {
  width: 112px;
  height: 40px;
  margin-top: 3rem;
  background: var(--orange);
}

.service-blue {
  background: var(--cobalt);
}

.service-orange {
  background: var(--orange);
  color: var(--ink);
}

.service-orange .service-card-number,
.service-orange p {
  color: #211f2a;
}

.service-cream {
  min-height: 290px;
  background: var(--paper);
  color: var(--ink);
}

.service-cream .service-card-number {
  color: var(--cobalt);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-top: 2.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.service-url {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 0.8rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-card blockquote {
  max-width: 540px;
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.5vw, 4.7rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.service-signoff {
  display: grid;
  margin-top: 1.3rem;
}

.service-signoff strong {
  font-size: 0.88rem;
}

.service-signoff span {
  color: #626b7d;
  font-size: 0.72rem;
}

/* About */

.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.about-kicker {
  align-self: start;
  border-top: 2px solid var(--ink);
  padding-top: 1rem;
}

.about-index {
  color: var(--cobalt);
  font-family: var(--display);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
}

.about-kicker p {
  margin-top: 0.35rem;
  color: #626b7c;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-main h2 {
  max-width: 950px;
}

.about-main h2 em {
  color: var(--orange);
}

.about-columns {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  margin-top: 3.5rem;
}

.about-lede {
  color: #3e475a;
  font-size: 1.15rem;
  line-height: 1.7;
}

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  border-bottom: 2px solid var(--ink);
  font-weight: 800;
}

.text-link:hover {
  color: var(--cobalt);
  border-color: var(--cobalt);
}

.operator-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.operator-points li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line-dark);
  padding-block: 1.2rem;
}

.operator-points li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.operator-points span {
  color: var(--cobalt);
  font-family: var(--display);
  font-size: 1.25rem;
}

.operator-points p {
  color: #515a6c;
}

.operator-points strong {
  color: var(--ink);
}

/* Commerce */

.commerce-section {
  overflow: hidden;
  background: var(--cobalt);
  color: var(--white);
}

.commerce-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.commerce-shape {
  position: absolute;
  right: -12rem;
  bottom: -14rem;
  width: 42rem;
  height: 42rem;
  transform: rotate(16deg);
  background: var(--orange);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  opacity: 0.92;
}

.commerce-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.commerce-copy h2 {
  color: var(--white);
}

.commerce-copy h2 em {
  color: var(--signal);
}

.commerce-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 1.35rem;
  color: #e0e5ff;
  font-size: 1.06rem;
}

.value-stack {
  display: grid;
  gap: 0;
  margin-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.value-stack article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  padding-block: 1.15rem;
}

.value-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(5, 7, 22, 0.18);
  color: var(--signal);
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.value-stack h3 {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.value-stack h3.sentence-case {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}

.value-stack p {
  margin-top: 0.35rem;
  color: #d9dfff;
  font-size: 0.78rem;
}

.calculator {
  position: relative;
  transform: rotate(1.4deg);
  border: 2px solid var(--ink);
  background: var(--ink);
  box-shadow: 16px 18px 0 rgba(5, 7, 22, 0.34);
  transition: transform 260ms var(--ease);
}

.calculator:hover,
.calculator:focus-within {
  transform: rotate(0deg) translateY(-4px);
}

.calculator-top {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1rem;
  color: var(--white);
}

.calculator-top span {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.calculator-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(221, 242, 71, 0.13);
}

.calculator-paper {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background:
    repeating-linear-gradient(to bottom, transparent 0, transparent 31px, rgba(13, 16, 82, 0.06) 32px),
    var(--paper);
  color: var(--ink);
}

.calculator-label {
  color: var(--cobalt);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.calculator h3 {
  max-width: 430px;
  margin-top: 0.55rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.calculator-paper > p {
  margin-top: 0.8rem;
  color: #5c6578;
  font-size: 0.82rem;
}

.calculator-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.7rem;
}

.field {
  min-width: 0;
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.74rem;
  font-weight: 800;
}

.input-wrap {
  min-height: 52px;
  display: flex;
  align-items: center;
  border: 2px solid var(--ink);
  background: var(--white);
}

.input-wrap:focus-within {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(49, 92, 255, 0.18);
}

.input-affix {
  padding-inline: 0.7rem;
  color: #687187;
  font-weight: 800;
}

.input-wrap input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0.75rem 0.35rem;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
}

.calculator-result {
  margin-top: 1.5rem;
  border-block: 2px solid var(--ink);
  padding-block: 1.2rem;
}

.result-label {
  color: #5d6677;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-number {
  margin-top: 0.25rem;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  font-variant-numeric: tabular-nums;
  line-height: 0.82;
}

.result-period {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

#comparisonDisclaimer {
  color: #6b7280;
  font-size: 0.68rem;
  line-height: 1.45;
}

/* Process */

.process-section {
  background: var(--paper);
}

.process-heading {
  display: flex;
  flex-direction: column;
}

.process-heading h2 em {
  color: var(--orange);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 4rem;
  border-block: 2px solid var(--ink);
}

.process-step {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  border-right: 1px solid var(--line-dark);
  padding: 1.4rem;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms var(--ease);
}

.process-step:last-child {
  border-right: 0;
}

.process-step:hover {
  transform: translateY(-8px);
  background: var(--ink);
  color: var(--white);
}

.process-number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  font-family: var(--display);
  font-size: 1.5rem;
}

.process-step strong {
  color: var(--cobalt);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-step:hover strong {
  color: var(--signal);
}

.process-step h3 {
  margin-top: 0.3rem;
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.process-step p {
  margin-top: 0.7rem;
  color: #5c6578;
  font-size: 0.85rem;
}

.process-step:hover p {
  color: #c8cfe2;
}

/* FAQ */

.faq-section {
  overflow: hidden;
  border-top: 2px solid var(--ink);
  background:
    radial-gradient(circle at 4% 12%, rgba(255, 106, 61, 0.15), transparent 28%),
    linear-gradient(rgba(13, 16, 82, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 16, 82, 0.05) 1px, transparent 1px),
    var(--cream);
  background-size: auto, 52px 52px, 52px 52px, auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 9rem);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  margin-top: 1.25rem;
}

.faq-heading h2 em {
  color: var(--orange);
  font-style: normal;
}

.faq-heading > p:not(.eyebrow) {
  max-width: 430px;
  margin-top: 1.4rem;
  color: #566074;
  font-size: 1rem;
  line-height: 1.7;
}

.faq-heading .text-link {
  margin-top: 1.8rem;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 2px solid var(--ink);
  background: rgba(255, 253, 246, 0.55);
}

.faq-list details[open] {
  background: var(--paper);
  box-shadow: inset 7px 0 0 var(--signal);
}

.faq-list summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--cobalt);
  font-family: var(--display);
  font-size: 1.45rem;
}

.faq-list summary strong {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.25;
}

.faq-list summary i {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: var(--ink);
  content: "";
  transition: transform 200ms var(--ease);
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 4.9rem 1.7rem 4.25rem;
}

.faq-answer p {
  max-width: 690px;
  color: #535d70;
  line-height: 1.75;
}

/* Contact */

.contact-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(49, 92, 255, 0.28), transparent 25%),
    linear-gradient(145deg, var(--ink) 0%, #0a0d2b 52%, var(--navy) 100%);
  color: var(--white);
}

.contact-orbit {
  position: absolute;
  border: 1px solid rgba(221, 242, 71, 0.2);
  border-radius: 50%;
}

.contact-orbit-one {
  top: -12rem;
  left: -12rem;
  width: 30rem;
  height: 30rem;
  box-shadow: 0 0 0 3rem rgba(221, 242, 71, 0.025), 0 0 0 6rem rgba(221, 242, 71, 0.018);
}

.contact-orbit-two {
  right: -5rem;
  bottom: -8rem;
  width: 22rem;
  height: 22rem;
  border-color: rgba(255, 106, 61, 0.22);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

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

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 1.4rem;
  color: #bdc5db;
  font-size: 1.05rem;
}

.contact-direct {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-direct a {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-direct a:hover {
  color: var(--signal);
}

.contact-direct span {
  color: #8f99b7;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.6rem;
}

.contact-lockup img {
  width: 70px;
  height: 70px;
}

.contact-lockup div {
  display: grid;
}

.contact-lockup strong {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
}

.contact-lockup span {
  margin-top: 0.25rem;
  color: #98a2c0;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-form {
  min-width: 0;
  border: 2px solid var(--ink);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--signal);
  color: var(--ink);
  box-shadow: 16px 18px 0 var(--orange);
}

.form-heading {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 1.3rem;
}

.form-heading > span {
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.form-heading h3 {
  margin-top: 0.4rem;
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.form-heading p {
  margin-top: 0.45rem;
  color: #4e563d;
  font-size: 0.76rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-block: 1.4rem;
}

.field-full {
  grid-column: 1 / -1;
}

.request-form input,
.request-form select,
.request-form textarea {
  min-height: 50px;
  width: 100%;
  border: 2px solid var(--ink);
  outline: 0;
  padding: 0.75rem 0.8rem;
  background: var(--paper);
  color: var(--ink);
}

.request-form textarea {
  min-height: 118px;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(49, 92, 255, 0.2);
}

.field-help {
  color: #50583e;
  font-size: 0.65rem;
  line-height: 1.35;
}

.field-error {
  margin-top: 0.9rem;
  border-left: 4px solid var(--signal);
  padding: 0.7rem 0.8rem;
  background: #fff0e9;
  color: #76200f;
  font-size: 0.75rem;
  font-weight: 800;
}

.request-ready {
  margin-top: 1rem;
  border: 2px solid var(--ink);
  padding: 1rem;
  background: var(--paper);
}

.request-ready p {
  font-size: 0.78rem;
}

.request-ready a {
  display: inline-block;
  margin-top: 0.6rem;
  border-bottom: 2px solid var(--cobalt);
  color: var(--cobalt);
  font-weight: 800;
}

.request-details {
  margin-top: 0.8rem;
  border: 1px solid rgba(10, 18, 48, 0.2);
  padding: 0.85rem;
  background: var(--white);
}

.request-details p + p {
  margin-top: 0.35rem;
}

#requestBody {
  margin: 0.75rem 0 0;
  max-width: 100%;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.72rem;
  line-height: 1.5;
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.request-actions a {
  margin-top: 0;
}

#copyRequest {
  min-height: 44px;
  border: 2px solid var(--ink);
  padding: 0.55rem 0.85rem;
  background: var(--ink);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

#copyStatus {
  flex: 1 1 100%;
  min-height: 1.1em;
  color: #50583e;
  font-size: 0.68rem;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #02030c;
  color: #8f98b2;
}

.footer-wrap {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  font-size: 0.72rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

/* Reveal and motion */

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 620ms var(--ease);
}

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

.hero-copy > * {
  animation: hero-in 720ms var(--ease) both;
}

.hero-copy > :nth-child(2) {
  animation-delay: 70ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 140ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 210ms;
}

.hero-copy > :nth-child(5) {
  animation-delay: 280ms;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbit-in {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateX(4deg) rotateY(-6deg) translateY(32px);
  }
  to {
    opacity: 1;
    transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
  }
}

@keyframes marquee-drop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive */

@media (max-width: 1120px) {
  .primary-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 8vw, 6.8rem);
  }

  .hero-site-card {
    width: 220px;
  }

  .card-restaurant {
    left: 0;
  }

  .card-auto {
    right: 0;
  }

  .commerce-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 5rem;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(4.5rem, 10vw, 6.5rem);
  }

  .hero-orbit {
    width: min(100%, 680px);
    min-height: 620px;
    margin-inline: auto;
  }

  .merchant-marquee {
    margin-top: 0;
  }

  .setup-heading,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .setup-heading > p {
    max-width: 680px;
    margin: 0;
  }

  .setup-rail {
    grid-template-columns: 1fr;
  }

  .setup-pillar {
    min-height: 340px;
  }

  .setup-join {
    min-height: 54px;
  }

  .setup-handoff {
    grid-template-columns: 1fr;
  }

  .setup-handoff .button {
    justify-self: start;
  }

  .faq-heading {
    position: static;
    max-width: 680px;
  }

  .real-work-heading {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .real-work-heading > p {
    max-width: 650px;
    margin: 0;
  }

  .real-project {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .project-dejesus {
    grid-template-columns: 1fr;
  }

  .project-dejesus .project-copy {
    order: 0;
  }

  .project-stage {
    min-height: 470px;
  }

  .project-copy h3,
  .project-description {
    max-width: 680px;
  }

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

  .demo-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .demo-tab {
    min-height: 84px;
  }

  .demo-tab svg {
    display: none;
  }

  .preview-stage {
    min-height: 650px;
  }

  .services-intro,
  .about-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-grid {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 2rem;
  }

  .commerce-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .calculator {
    max-width: 650px;
    margin-inline: auto;
  }

  .contact-copy {
    position: static;
  }

  .request-form {
    max-width: 680px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-block: 1.5rem;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .section {
    padding-block: 5rem;
  }

  .nav-wrap {
    min-height: 70px;
    gap: 1rem;
  }

  .brand-emblem {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-owner {
    display: none;
  }

  .nav-cta {
    min-height: 44px;
    padding: 0.65rem 0.8rem;
    font-size: 0.76rem;
  }

  .nav-cta svg {
    display: none;
  }

  main section[id]:not(#top) {
    scroll-margin-top: 78px;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 4.5rem 3rem;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 17vw, 5.25rem);
    line-height: 0.83;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-offer-note {
    font-size: 0.68rem;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 2.7rem;
  }

  .hero-proof div {
    min-height: 80px;
    padding-inline: 0.55rem;
  }

  .hero-proof span {
    font-size: 0.58rem;
  }

  .hero-orbit {
    min-height: 520px;
    overflow: hidden;
  }

  .orbit-grid {
    inset: 1rem;
  }

  .santos-frame {
    top: 3.5rem;
    width: 74%;
    height: 390px;
  }

  .hero-site-card {
    width: 44%;
    box-shadow: 7px 8px 0 rgba(5, 7, 22, 0.72);
  }

  .hero-site-card > img {
    height: 86px;
  }

  .mini-browser {
    height: 24px;
  }

  .mini-browser span {
    display: none;
  }

  .mini-card-copy {
    display: grid;
    gap: 0.2rem;
    padding: 0.5rem;
  }

  .mini-card-copy strong {
    font-size: 0.95rem;
  }

  .card-restaurant {
    top: 0.5rem;
    left: 0;
  }

  .card-auto {
    top: 7.3rem;
    right: 0;
  }

  .card-barber {
    bottom: 0.4rem;
    left: 1rem;
  }

  .orbit-status {
    right: 0.2rem;
    bottom: 1.5rem;
  }

  .orbit-status span {
    display: none;
  }

  .marquee-track {
    min-height: 62px;
  }

  .setup-section {
    background-size: 36px 36px, 36px 36px, auto;
  }

  .setup-heading h2,
  .faq-heading h2 {
    font-size: clamp(3.8rem, 17vw, 5.2rem);
  }

  .setup-heading > p {
    font-size: 0.96rem;
  }

  .setup-rail {
    margin-top: 3.2rem;
    box-shadow: 8px 9px 0 var(--orange);
  }

  .setup-pillar {
    min-height: 320px;
    padding: 1.4rem;
  }

  .setup-pillar h3 {
    font-size: 4rem;
  }

  .setup-handoff {
    padding: 1rem;
    box-shadow: 6px 7px 0 var(--signal);
  }

  .setup-handoff .button {
    width: 100%;
  }

  .faq-list summary {
    min-height: 82px;
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 0.7rem;
    padding-inline: 0.75rem;
  }

  .faq-answer {
    padding: 0 1rem 1.5rem 3.35rem;
  }

  .faq-answer p {
    font-size: 0.92rem;
  }

  .real-work-section {
    padding-block: 5.7rem;
    background-size: 38px 38px, 38px 38px, auto, auto;
  }

  .real-work-heading h2 {
    font-size: clamp(4rem, 19vw, 5.8rem);
  }

  .real-work-heading > p {
    font-size: 0.96rem;
  }

  .real-projects {
    margin-top: 3.5rem;
  }

  .real-project {
    gap: 2.5rem;
    padding-block: 4rem;
  }

  .project-copy h3 {
    font-size: clamp(3.9rem, 18vw, 5.6rem);
  }

  .project-description {
    margin-top: 1.35rem;
    font-size: 0.94rem;
  }

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

  .project-tags li {
    display: grid;
    min-height: 42px;
    place-items: center start;
  }

  .project-stage {
    min-height: 345px;
    box-shadow: 9px 10px 0 var(--project-shadow);
  }

  .project-browser {
    top: 50%;
    right: 2.8rem;
    left: 0.8rem;
    box-shadow: 7px 8px 0 rgba(5, 7, 22, 0.45);
  }

  .project-browser-bar {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 29px;
    padding-inline: 0.45rem;
    font-size: 0.51rem;
  }

  .project-dots {
    gap: 3px;
  }

  .project-dots i {
    width: 5px;
    height: 5px;
  }

  .project-phone {
    right: -0.45rem;
    bottom: -0.8rem;
    width: 29%;
    border-width: 5px;
    border-radius: 19px;
    box-shadow: 6px 7px 0 rgba(5, 7, 22, 0.48);
  }

  .project-phone-notch {
    height: 9px;
  }

  .project-stamp {
    top: -1.9rem;
    right: -0.35rem;
    width: 66px;
    height: 66px;
    font-size: 0.86rem;
    box-shadow: 4px 4px 0 var(--project-accent);
  }

  .portfolio-boundary {
    margin-top: 3rem;
    font-size: 0.84rem;
  }

  .mobile-action-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    border-top: 2px solid var(--signal);
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--ink);
    box-shadow: 0 -12px 28px rgba(5, 7, 22, 0.2);
  }

  .mobile-action-dock a {
    display: grid;
    min-height: 68px;
    align-content: center;
    padding: 0.65rem 1rem;
    color: var(--white);
  }

  .mobile-action-dock a + a {
    background: var(--signal);
    color: var(--ink);
  }

  .mobile-action-dock span {
    font-family: var(--mono);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    opacity: 0.7;
    text-transform: uppercase;
  }

  .mobile-action-dock strong {
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
  }

  .section-heading h2,
  .setup-heading h2,
  .services-intro h2,
  .about-main h2,
  .commerce-copy h2,
  .process-heading h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(3.6rem, 17vw, 5.2rem);
  }

  .demo-rail {
    grid-template-columns: 1fr 1fr;
  }

  .demo-tab {
    grid-template-columns: 24px minmax(0, 1fr);
    padding: 0.7rem;
  }

  .preview-stage {
    min-height: 650px;
    padding: 0 0 4rem;
  }

  .browser-shell {
    transform: none;
    box-shadow: 8px 9px 0 var(--ink);
  }

  .preview-stage:hover .browser-shell {
    transform: none;
  }

  .browser-bar {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .secure-mark {
    display: none;
  }

  .storefront-hero {
    min-height: 310px;
  }

  .storefront-name {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .storefront-body {
    grid-template-columns: 1fr;
  }

  .preview-services {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    right: 0.4rem;
    width: 180px;
  }

  .showcase-stamp {
    top: -2.4rem;
    right: -0.2rem;
    width: 70px;
    height: 70px;
  }

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

  .service-featured {
    min-height: 560px;
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
  }

  .browser-visual {
    min-height: 250px;
  }

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

  .about-kicker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .about-kicker p {
    max-width: 160px;
    margin-top: 0;
    text-align: right;
  }

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

  .field-full {
    grid-column: auto;
  }

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

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

  .process-step:last-child {
    border-bottom: 0;
  }

  .contact-direct a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 0.55rem;
  }

  .brand-emblem {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .nav-cta {
    padding-inline: 0.65rem;
  }

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

  .hero-proof div {
    padding-inline: 0.35rem;
  }

  .santos-frame {
    width: 78%;
  }

  .demo-name {
    font-size: 1rem;
  }

  .project-stage {
    min-height: 300px;
  }

  .project-browser {
    right: 2.25rem;
  }

  .project-phone {
    width: 31%;
  }

  .mobile-action-dock a {
    padding-inline: 0.75rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .hero-orbit,
  .browser-shell,
  .calculator,
  .reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .marquee-track {
    transform: translateX(0) !important;
  }
}
