:root {
  --bg: #03060b;
  --bg-2: #080d14;
  --ink: #f5f8ff;
  --muted: #9ca8ba;
  --cyan: #64e6ff;
  --red: #7f8da3;
  --gold: #e6edf7;
  --violet: #5f6b7b;
  --danger: #ff4d5e;
  --steel: #6f7f95;
  --line: rgba(255, 255, 255, .13);
  --panel: rgba(8, 13, 20, .82);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 12%, rgba(127, 141, 163, .018), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(100, 230, 255, .075), transparent 28%),
    linear-gradient(180deg, #03060b 0%, #080d14 48%, #03060b 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(100,230,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,230,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black, transparent 92%);
}

body.is-loading { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.boot {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  gap: 14px;
  align-content: center;
  background: #03060b;
  transition: opacity .7s ease, visibility .7s ease;
}

.boot span {
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .24em;
}

.boot strong {
  position: relative;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.6rem, 5vw, 5rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.boot strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--red), transparent);
  animation: bootLine 1.2s ease-in-out infinite;
}

body.loaded .boot {
  opacity: 0;
  visibility: hidden;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,.06);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--red), var(--gold));
  box-shadow: 0 0 18px rgba(100,230,255,.7);
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 120;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(100,230,255,.82);
  background: rgba(100,230,255,.08);
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  transition: width .2s ease, height .2s ease, opacity .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  mix-blend-mode: screen;
  will-change: left, top, width, height, opacity;
}

.cursor::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
  transition: inset .2s ease, border-radius .2s ease, background .2s ease;
}

body.custom-cursor .cursor {
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  body.custom-cursor,
  body.custom-cursor * {
    cursor: none !important;
  }
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-hot {
  width: 48px;
  height: 48px;
  border-color: rgba(127,141,163,.88);
  background: rgba(127,141,163,.08);
  box-shadow: 0 0 26px rgba(100,230,255,.28), inset 0 0 18px rgba(127,141,163,.14);
}

.cursor.is-hot::after {
  inset: 18px;
  background: var(--red);
  box-shadow: 0 0 24px rgba(127,141,163,.86);
}

.cursor.is-down:not(.is-text) {
  width: 18px;
  height: 18px;
  border-color: rgba(255,214,102,.9);
  background: rgba(255,214,102,.12);
}

.cursor.is-text {
  width: 8px;
  height: 34px;
  border-radius: 999px;
  border-color: rgba(245,248,255,.82);
  background: rgba(245,248,255,.2);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(100,230,255,.24);
}

.cursor.is-text::after {
  inset: 3px;
  border-radius: 999px;
  background: rgba(245,248,255,.9);
  box-shadow: 0 0 18px rgba(245,248,255,.72);
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: .13;
  background: repeating-linear-gradient(180deg, transparent 0 6px, rgba(255,255,255,.06) 7px);
  mix-blend-mode: overlay;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(1,2,10,.56);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand strong,
footer strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .74rem;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at 70% 24%, rgba(127,141,163,.16), transparent 26%),
    radial-gradient(circle at 28% 76%, rgba(100,230,255,.28), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  box-shadow: 0 0 28px rgba(100,230,255,.18), inset 0 0 18px rgba(255,255,255,.06);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(100,230,255,.82), rgba(127,141,163,.48));
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.34), transparent 54%);
  transform: translateX(-130%);
  transition: transform .6s ease;
  mix-blend-mode: screen;
}

.brand:hover .brand-mark::after,
.footer-brand:hover .brand-mark::after {
  transform: translateX(130%);
}

.brand-mark svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.mark-shell {
  fill: rgba(3, 7, 18, .92);
  stroke: rgba(255,255,255,.18);
  stroke-width: 1.2;
}

.mark-diamond {
  fill: none;
  stroke: rgba(100,230,255,.48);
  stroke-width: 1.6;
}

.mark-blade,
.mark-hood,
.mark-face,
.mark-eye,
.mark-screen,
.mark-laptop,
.mark-code,
.mark-node {
  transition: transform .24s ease, filter .24s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.mark-blade {
  fill: rgba(127,141,163,.9);
  filter: drop-shadow(0 0 7px rgba(127,141,163,.56));
}

.mark-hood {
  fill: rgba(246,248,251,.98);
  stroke: rgba(100,230,255,.68);
  stroke-width: 1.2;
  filter: drop-shadow(0 0 8px rgba(100,230,255,.46));
}

.mark-face {
  fill: rgba(3,6,11,.96);
  stroke: rgba(255,255,255,.16);
  stroke-width: .8;
}

.mark-eye {
  filter: drop-shadow(0 0 7px currentColor);
}

.mark-eye-left {
  fill: var(--cyan);
  color: rgba(100,230,255,.72);
}

.mark-eye-right {
  fill: var(--gold);
  color: rgba(127,141,163,.62);
}

.mark-screen {
  fill: rgba(3,6,11,.94);
  stroke: rgba(100,230,255,.86);
  stroke-width: 1.2;
}

.mark-laptop {
  fill: rgba(246,248,251,.92);
  stroke: rgba(127,141,163,.42);
  stroke-width: .8;
}

.mark-code {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mark-node {
  fill: var(--gold);
  filter: drop-shadow(0 0 8px rgba(127,141,163,.72));
}

.brand:hover .mark-hood,
.footer-brand:hover .mark-hood {
  transform: translateY(-1px);
}

.brand:hover .mark-blade,
.footer-brand:hover .mark-blade {
  transform: translate(1px, -1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: var(--muted);
  font-size: .9rem;
}

.nav-links a {
  transition: color .2s ease, text-shadow .2s ease;
}

.nav-links a:hover {
  color: var(--ink);
  text-shadow: 0 0 16px rgba(100,230,255,.65);
}

.button,
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255,255,255,.045);
  font-weight: 900;
  letter-spacing: 0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  cursor: pointer;
  overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease, transform .22s ease;
}

.button::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.34), transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.button:hover::after,
.nav-cta:hover::after {
  transform: translateX(120%);
}

.button:hover,
.nav-cta:hover {
  border-color: rgba(100,230,255,.75);
  box-shadow: 0 0 34px rgba(100,230,255,.16);
}

.primary {
  color: #02030a;
  background: linear-gradient(90deg, var(--cyan), #e8ffff);
  border-color: transparent;
}

.ghost {
  background: rgba(255,255,255,.04);
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 72px) 92px;
}

#dojoCanvas,
.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

#dojoCanvas {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3,6,11,.86) 0%, rgba(3,6,11,.48) 34%, rgba(3,6,11,.04) 76%),
    radial-gradient(circle at 74% 45%, rgba(100,230,255,.24), transparent 36%),
    radial-gradient(circle at 20% 50%, rgba(127,141,163,.06), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(820px, 70vw);
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 72ch;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
  animation: pulseSquare 1.5s steps(2) infinite;
}

h1, h2, h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  position: relative;
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 7.35rem);
  line-height: .86;
  text-transform: uppercase;
  text-shadow:
    3px 0 0 rgba(127,141,163,.42),
    -3px 0 0 rgba(100,230,255,.58),
    0 0 46px rgba(100,230,255,.24);
  animation: headlineGlitch 4.5s infinite;
}

.hero-line {
  max-width: 700px;
  margin: 30px 0 30px;
  color: #dbe4fb;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
}

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

.hero-readout {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 20px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(1,2,10,.58);
  backdrop-filter: blur(16px);
}

.hero-readout span {
  min-height: 54px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  border-right: 1px solid var(--line);
  font-size: .88rem;
}

.hero-readout span:last-child { border-right: 0; }

.hero-fallback {
  display: none;
  background:
    radial-gradient(circle at 72% 42%, rgba(100,230,255,.18), transparent 20%),
    radial-gradient(circle at 62% 52%, rgba(127,141,163,.06), transparent 28%);
}

.three-failed .hero-fallback,
.reduced-motion .hero-fallback {
  display: block;
}

.fallback-core,
.fallback-ring,
.fallback-panel {
  position: absolute;
  border: 1px solid rgba(100,230,255,.36);
}

.fallback-core {
  top: 31%;
  right: 18%;
  width: 18vw;
  min-width: 180px;
  aspect-ratio: 1;
  background: rgba(100,230,255,.08);
  box-shadow: 0 0 80px rgba(100,230,255,.18);
  transform: rotate(45deg);
}

.fallback-ring {
  top: 19%;
  right: 10%;
  width: 36vw;
  min-width: 310px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: spin 8s linear infinite;
}

.fallback-ring.two {
  top: 28%;
  right: 18%;
  width: 22vw;
  min-width: 220px;
  border-style: dashed;
  border-color: rgba(127,141,163,.48);
  animation-direction: reverse;
}

.fallback-panel {
  right: 13%;
  top: 38%;
  width: 260px;
  height: 120px;
  background: rgba(255,255,255,.04);
  transform: skewY(-8deg);
}

.fallback-panel.b {
  right: 34%;
  top: 55%;
  width: 190px;
  height: 94px;
}

.statement,
.demos,
.skill-scanner,
.section,
.case-study,
.contact {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

#demos,
#skills,
#work,
#pricing,
#contact {
  scroll-margin-top: 104px;
}

.statement {
  position: relative;
  padding: 120px 0 96px;
}

.statement::before {
  content: "";
  position: absolute;
  inset: 28px -18px 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,13,20,.08), rgba(8,13,20,.42)),
    radial-gradient(circle at 78% 36%, rgba(100,230,255,.07), transparent 30%);
}

.statement p {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.statement h2,
.section-head h2,
.scanner-copy h2,
.case-copy h2,
.contact-copy h2 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.2rem, 6vw, 5.8rem);
  line-height: .92;
}

.demos {
  padding: 96px 0;
}

.section-head {
  margin-bottom: 34px;
}

.section-head p:last-child {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.demo-tile,
.service,
.price-card,
details {
  position: relative;
  background: rgba(5,9,21,.74);
  border: 1px solid var(--line);
  overflow: hidden;
  transform-style: preserve-3d;
}

.demo-tile {
  min-height: 0;
  padding: 22px;
  display: grid;
  align-content: start;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.demo-tile:hover {
  border-color: rgba(100,230,255,.55);
  box-shadow: 0 28px 80px rgba(100,230,255,.12);
  background: rgba(8,14,30,.84);
}

.demo-preview {
  position: relative;
  width: 100%;
  height: clamp(520px, 34vw, 660px);
  margin: 0 0 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 34%),
    rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.12);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.demo-preview::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  z-index: 2;
  background: linear-gradient(105deg, transparent 35%, rgba(100,230,255,.18), transparent 60%);
  transform: translateX(-60%);
  animation: panelSweep 3.8s ease-in-out infinite;
}

.demo-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .65;
}

.barber { background-color: rgba(20, 12, 16, .9); }
.fitness { background-color: rgba(8, 22, 22, .9); }
.creative { background-color: rgba(11, 12, 28, .9); }

.living-preview {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.12), transparent 26%),
    radial-gradient(circle at 78% 36%, rgba(100,230,255,.12), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 40%),
    rgba(255,255,255,.035);
}

.mini-site {
  position: absolute;
  inset: 22px;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(1,2,10,.48);
  transform: translateZ(28px);
}

.mini-nav {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  z-index: 4;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(1,2,10,.42);
}

.mini-nav span {
  display: block;
  width: auto;
  height: auto;
  margin-left: 0;
  color: rgba(222,235,255,.74);
  background: none;
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mini-nav span:first-child {
  margin-right: auto;
  color: var(--cyan);
}

.mini-hero {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 78px;
  z-index: 4;
  display: grid;
  gap: 10px;
}

.mini-hero small,
.mini-caption small {
  color: var(--cyan);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.mini-hero strong,
.mini-caption strong {
  max-width: 15ch;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.05rem, 2.15vw, 1.46rem);
  line-height: .95;
}

.mini-hero em {
  width: max-content;
  padding: 8px 10px;
  color: #02030a;
  background: var(--cyan);
  font-size: .72rem;
  font-weight: 900;
  font-style: normal;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  animation: miniCtaPulse 1.7s ease-in-out infinite;
}

.barber-site {
  background:
    linear-gradient(100deg, rgba(127,141,163,.1), transparent 36%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 26px),
    linear-gradient(135deg, #161015, #05060d 68%);
}

.barber-site::before {
  content: "";
  position: absolute;
  right: 14%;
  bottom: 24%;
  width: 38%;
  aspect-ratio: 1;
  border: 1px dashed rgba(255,211,106,.62);
  border-radius: 50%;
  animation: spin 7s linear infinite;
}

.barber-site::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: 24%;
  width: 70%;
  height: 14px;
  background: linear-gradient(90deg, var(--red), var(--cyan), transparent);
  box-shadow: 0 0 22px rgba(100,230,255,.5);
  opacity: .64;
  transform: skewX(-22deg);
  animation: bladeSweep 2.5s ease-in-out infinite;
}

.mini-service {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
}

.mini-service-stack {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 78px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-service-stack span {
  min-height: 48px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 8px;
  color: #dfe8ff;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.055);
  font-size: .58rem;
  font-weight: 800;
}

.mini-service-stack b {
  color: var(--gold);
  font-size: .7rem;
}

.mini-proof {
  position: absolute;
  left: 22px;
  right: auto;
  top: 250px;
  z-index: 5;
  max-width: 42%;
  padding: 8px 10px;
  color: #fff4c7;
  border: 1px solid rgba(255,211,106,.28);
  background: rgba(1,2,10,.52);
  font-size: .62rem;
  font-weight: 900;
}

.mini-steps {
  position: absolute;
  left: 22px;
  bottom: 28px;
  z-index: 5;
  display: flex;
  gap: 6px;
  max-width: 58%;
}

.mini-steps span,
.mini-results span,
.mini-client-row span {
  padding: 7px 8px;
  color: rgba(222,235,255,.86);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(1,2,10,.5);
  font-size: .54rem;
  font-weight: 900;
  white-space: nowrap;
}

.mini-review {
  position: absolute;
  left: 22px;
  right: auto;
  top: 318px;
  bottom: auto;
  z-index: 5;
  max-width: 38%;
  padding: 8px 9px;
  color: #fff4c7;
  border: 1px solid rgba(255,211,106,.22);
  background: rgba(1,2,10,.56);
  font-size: .58rem;
  font-weight: 900;
}

.mini-photo-wall {
  position: absolute;
  right: 20px;
  top: 156px;
  bottom: 190px;
  z-index: 3;
  width: 34%;
  display: grid;
  grid-template-rows: 1fr .8fr 1.1fr;
  gap: 8px;
}

.mini-photo-wall i {
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(135deg, rgba(255,255,255,.14), transparent),
    rgba(255,255,255,.06);
  animation: floatTile 3.4s ease-in-out infinite;
}

.mini-photo-wall i:nth-child(2) {
  transform: translateX(-18px);
  animation-delay: -.8s;
}

.mini-photo-wall i:nth-child(3) {
  transform: translateX(-6px);
  animation-delay: -1.6s;
}

.mini-service.one {
  right: 18px;
  top: 74px;
  width: 28%;
  height: 34%;
}

.mini-service.two {
  right: 24%;
  bottom: 28px;
  width: 36%;
  height: 22%;
}

.mini-knife {
  position: absolute;
  left: 34%;
  top: 45%;
  z-index: 4;
  width: 44%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff, var(--cyan));
  box-shadow: 0 0 18px rgba(100,230,255,.55);
  transform: rotate(-28deg);
  animation: knifeGlint 1.9s ease-in-out infinite;
}

.mini-booking {
  position: absolute;
  right: 18px;
  bottom: 28px;
  z-index: 5;
  padding: 8px 10px;
  color: var(--gold);
  border: 1px solid rgba(255,211,106,.35);
  background: rgba(1,2,10,.58);
  font-size: .72rem;
  font-weight: 900;
}

.mini-plan-list {
  position: absolute;
  left: 24px;
  top: 270px;
  bottom: auto;
  z-index: 4;
  display: grid;
  gap: 7px;
  width: 42%;
}

.mini-results {
  position: absolute;
  right: 24px;
  top: 278px;
  bottom: auto;
  z-index: 5;
  display: grid;
  gap: 7px;
  width: 34%;
}

.mini-plan-list span {
  padding: 8px 9px;
  color: #ddfff8;
  border: 1px solid rgba(100,230,255,.15);
  background: rgba(255,255,255,.055);
  font-size: .62rem;
  font-weight: 800;
}

.fitness-site {
  background:
    radial-gradient(circle at 50% 48%, rgba(100,230,255,.16), transparent 28%),
    linear-gradient(140deg, rgba(55,255,180,.12), transparent 42%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.026) 0 1px, transparent 1px 24px),
    #041414;
}

.fitness-site .mini-hero {
  max-width: 58%;
}

.mini-stat {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.mini-stat.ring {
  right: 12%;
  top: 158px;
  width: 112px;
  height: 112px;
  color: var(--cyan);
  border: 2px solid rgba(100,230,255,.72);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(100,230,255,.22);
  animation: pulseRingFlat 1.8s ease-in-out infinite;
}

.mini-stat.card {
  right: 24px;
  bottom: 102px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.075);
}

.mini-lead-form {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 26px;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 7px;
}

.mini-lead-form i,
.mini-lead-form b {
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(1,2,10,.82);
  color: rgba(222,235,255,.68);
  font-size: .58rem;
  font-style: normal;
  font-weight: 800;
}

.mini-lead-form b {
  color: #02030a;
  border-color: transparent;
  background: var(--cyan);
}

.mini-progress {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 78px;
  z-index: 4;
  height: 9px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}

.mini-progress i {
  display: block;
  width: 76%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  box-shadow: 0 0 22px rgba(100,230,255,.45);
  animation: progressSurge 2.2s ease-in-out infinite;
}

.creative-site {
  background:
    radial-gradient(circle at 74% 30%, rgba(139,92,255,.2), transparent 28%),
    linear-gradient(140deg, rgba(100,230,255,.08), transparent 44%),
  #080b1b;
}

.creative-site .mini-caption strong {
  max-width: 12ch;
  font-size: clamp(1.05rem, 1.8vw, 1.36rem);
}

.mini-filter {
  position: absolute;
  left: 24px;
  top: 68px;
  z-index: 5;
  display: flex;
  gap: 7px;
}

.mini-filter span {
  padding: 7px 8px;
  color: #dbe5ff;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  font-size: .54rem;
  font-weight: 900;
}

.mini-gallery {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), transparent),
    rgba(255,255,255,.055);
  overflow: hidden;
}

.mini-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(100,230,255,.18), transparent);
  transform: translateX(-110%);
  animation: panelSweep 3.2s ease-in-out infinite;
}

.mini-gallery.main {
  left: 24px;
  top: 134px;
  width: 48%;
  height: 40%;
}

.mini-gallery.side {
  right: 24px;
  top: 142px;
  width: 34%;
  height: 29%;
  animation: floatTile 3.6s ease-in-out infinite;
}

.mini-gallery.strip {
  right: 42px;
  bottom: 130px;
  width: 52%;
  height: 18%;
  animation: floatTile 4.2s ease-in-out infinite reverse;
}

.mini-caption {
  position: absolute;
  left: 24px;
  right: auto;
  bottom: 38px;
  z-index: 5;
  display: grid;
  gap: 7px;
  max-width: 48%;
}

.mini-project-meta {
  position: absolute;
  right: 22px;
  bottom: 42px;
  z-index: 6;
  padding: 8px 10px;
  color: var(--cyan);
  border: 1px solid rgba(100,230,255,.2);
  background: rgba(1,2,10,.56);
  font-size: .58rem;
  font-weight: 900;
}

.mini-client-row {
  position: absolute;
  left: 24px;
  bottom: 116px;
  z-index: 6;
  display: flex;
  gap: 7px;
}

.demo-browser,
.demo-line,
.demo-orbit,
.demo-pulse,
.demo-frame {
  position: absolute;
  z-index: 2;
  display: block;
}

.demo-browser {
  left: 18px;
  right: 18px;
  top: 18px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(1,2,10,.5);
}

.demo-line {
  left: 32px;
  bottom: 44px;
  width: 44%;
  height: 10px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  box-shadow: 0 0 18px rgba(100,230,255,.45);
  animation: codePulse 2.1s ease-in-out infinite;
}

.demo-line.long {
  bottom: 68px;
  width: 68%;
  background: linear-gradient(90deg, var(--red), var(--cyan));
}

.demo-orbit {
  right: 18%;
  top: 30%;
  width: 38%;
  aspect-ratio: 1;
  border: 1px dashed rgba(255,211,106,.6);
  border-radius: 50%;
  animation: spin 5s linear infinite;
}

.demo-pulse {
  left: 50%;
  top: 44%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  box-shadow: 0 0 34px rgba(100,230,255,.35);
  transform: translate(-50%, -50%);
  animation: pulseRing 1.6s ease-in-out infinite;
}

.demo-frame {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
}

.demo-frame.one { left: 28px; top: 74px; width: 46%; height: 48%; }
.demo-frame.two { right: 28px; top: 98px; width: 34%; height: 30%; }
.demo-frame.three { right: 54px; bottom: 40px; width: 48%; height: 22%; }

.demo-tile p,
.price-card p {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.demo-tile h3,
.service h3,
.step h3,
.price-card h3,
details summary {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.demo-tile > span,
.service p,
.step p,
.price-card > span,
details p,
.case-copy p,
.contact-copy p,
.scanner-copy p,
.scanner-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.template-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.template-map li {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 8px;
  padding: 10px;
  color: #dff8ff;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.template-map b {
  color: var(--cyan);
  font-size: .68rem;
  line-height: 1.35;
}

.template-map span {
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.25;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.skill-tags li {
  padding: 8px 10px;
  color: #dff8ff;
  border: 1px solid rgba(100,230,255,.22);
  background: rgba(100,230,255,.06);
  font-size: .75rem;
  font-weight: 800;
}

.demo-open {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 12px 18px;
  color: var(--cyan);
  border: 1px solid rgba(100,230,255,.36);
  background: rgba(1,2,10,.42);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
  transition: color .2s ease, background .2s ease, transform .2s ease, border-color .2s ease;
}

.demo-open:hover,
.demo-open:focus-visible {
  color: #02030a;
  background: var(--cyan);
  border-color: var(--cyan);
  outline: none;
}

body.modal-open {
  overflow: hidden;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
}

.demo-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(1,2,10,.82);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.demo-modal-panel {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100vw - 32px));
  max-height: min(860px, calc(100svh - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
  overflow: auto;
  border: 1px solid rgba(100,230,255,.34);
  background:
    linear-gradient(135deg, rgba(100,230,255,.1), transparent 35%),
    rgba(5,9,21,.96);
  box-shadow: 0 34px 120px rgba(0,0,0,.68), 0 0 80px rgba(100,230,255,.16);
  transform: translateY(20px) scale(.98);
  transition: transform .24s ease;
}

.demo-modal.is-open .demo-modal-panel {
  transform: translateY(0) scale(1);
}

.demo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(1,2,10,.66);
  cursor: pointer;
  font-weight: 900;
}

.demo-modal-visual {
  min-height: min(720px, calc(100svh - 72px));
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.demo-modal-copy {
  align-self: start;
  padding: 56px 44px 44px;
}

.demo-modal-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 1;
}

.demo-modal-copy p:not(.kicker) {
  color: var(--muted);
  line-height: 1.65;
}

.demo-modal-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.demo-modal-copy li {
  padding: 12px 14px;
  color: #dff8ff;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
}

.modal-template-spec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 26px;
}

.modal-template-spec span {
  min-height: 84px;
  display: grid;
  gap: 5px;
  align-content: start;
  padding: 12px;
  color: rgba(222,235,255,.78);
  border: 1px solid rgba(100,230,255,.16);
  background: rgba(100,230,255,.045);
  font-size: .78rem;
  line-height: 1.45;
}

.modal-template-spec b {
  display: block;
  color: var(--cyan);
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.modal-stage {
  position: absolute;
  inset: 0;
  padding: 28px;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    radial-gradient(circle at 70% 35%, rgba(100,230,255,.16), transparent 30%);
  background-size: 34px 34px, 34px 34px, 100% 100%;
}

.modal-template {
  position: absolute;
  inset: 42px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(1,2,10,.62);
  clip-path: polygon(26px 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%, 0 26px);
}

.barber-modal .modal-template {
  background:
    radial-gradient(circle at 74% 38%, rgba(255,211,106,.14), transparent 24%),
    linear-gradient(110deg, rgba(127,141,163,.16), transparent 42%),
    linear-gradient(135deg, #170f14, #04050b 70%);
}

.fitness-modal .modal-template {
  background:
    radial-gradient(circle at 70% 40%, rgba(100,230,255,.18), transparent 30%),
    linear-gradient(135deg, #031716, #04080c 74%);
}

.creative-modal .modal-template {
  background:
    radial-gradient(circle at 78% 34%, rgba(139,92,255,.24), transparent 30%),
    linear-gradient(135deg, #070a1b, #03050d 72%);
}

.modal-template::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
}

.modal-template::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,.13), transparent 62%);
  animation: panelSweep 3.6s ease-in-out infinite;
  pointer-events: none;
}

.template-nav {
  position: absolute;
  left: 42px;
  right: 42px;
  top: 34px;
  z-index: 4;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(1,2,10,.48);
}

.template-nav b {
  margin-right: auto;
  color: var(--cyan);
  font-size: .72rem;
  letter-spacing: .14em;
}

.template-nav span {
  color: rgba(222,235,255,.74);
  font-size: .68rem;
  font-weight: 900;
}

.template-hero {
  position: absolute;
  left: 42px;
  top: 110px;
  z-index: 4;
  display: grid;
  gap: 14px;
  max-width: 390px;
}

.template-hero small {
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.template-hero strong {
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  line-height: .9;
}

.template-hero em {
  width: max-content;
  padding: 12px 14px;
  color: #02030a;
  background: var(--cyan);
  font-weight: 900;
  font-style: normal;
  animation: miniCtaPulse 1.8s ease-in-out infinite;
}

.template-media {
  position: absolute;
  right: 9%;
  top: 23%;
  z-index: 3;
  width: 32%;
  aspect-ratio: 1;
  border: 1px solid rgba(100,230,255,.52);
  background: rgba(255,255,255,.045);
  box-shadow: 0 0 60px rgba(100,230,255,.15);
}

.template-media.blade::after {
  content: "";
  position: absolute;
  left: -25%;
  top: 56%;
  width: 150%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--cyan), #fff, transparent);
  transform: rotate(-28deg);
  box-shadow: 0 0 22px rgba(100,230,255,.6);
  animation: knifeGlint 2s ease-in-out infinite;
}

.template-media.ring {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cyan);
  font-size: 2.1rem;
  font-weight: 900;
  animation: pulseRingFlat 2s ease-in-out infinite;
}

.template-services {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 40px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.template-services span {
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  color: #dfe8ff;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
  font-weight: 900;
}

.template-services b {
  color: var(--gold);
}

.template-proof {
  position: absolute;
  right: 42px;
  bottom: 132px;
  z-index: 5;
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 14px;
  border: 1px solid rgba(100,230,255,.22);
  background: rgba(1,2,10,.58);
}

.template-proof b {
  color: var(--cyan);
  font-size: 1.8rem;
  line-height: 1;
}

.template-proof span {
  color: var(--muted);
  font-size: .78rem;
}

.template-booking {
  position: absolute;
  right: 42px;
  top: 110px;
  z-index: 5;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  color: var(--gold);
  border: 1px solid rgba(255,211,106,.34);
  background: rgba(1,2,10,.58);
}

.template-booking small {
  color: var(--muted);
  font-weight: 800;
}

.template-booking strong {
  font-family: "Space Grotesk", Inter, sans-serif;
}

.template-flow,
.template-results {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.template-flow {
  left: 42px;
  width: 46%;
  bottom: 124px;
}

.template-results {
  right: 42px;
  width: 42%;
  bottom: 206px;
}

.template-flow span,
.template-results span {
  min-height: 52px;
  display: grid;
  align-content: center;
  padding: 10px;
  color: #dff8ff;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.05);
  font-size: .78rem;
  font-weight: 900;
}

.template-results b {
  color: var(--cyan);
  font-size: 1.15rem;
}

.template-review {
  position: absolute;
  right: 42px;
  top: 88px;
  z-index: 5;
  max-width: 250px;
  padding: 13px 14px;
  color: #fff4c7;
  border: 1px solid rgba(255,211,106,.22);
  background: rgba(1,2,10,.58);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.35;
}

.template-site-strip {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 18px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.template-site-strip span {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  color: rgba(222,235,255,.78);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(1,2,10,.44);
  font-size: .68rem;
  font-weight: 900;
  text-align: center;
}

.barber-modal .template-services {
  bottom: 72px;
}

.barber-modal .template-hero {
  top: 112px;
  max-width: 44%;
}

.barber-modal .template-hero strong {
  font-size: clamp(2.3rem, 3.2vw, 3.45rem);
  line-height: .96;
}

.barber-modal .template-media {
  right: 42px;
  top: 220px;
  width: 34%;
}

.barber-modal .template-flow {
  left: 42px;
  width: 46%;
  bottom: 156px;
}

.barber-modal .template-review {
  right: 58px;
  top: 168px;
  max-width: 250px;
}

.barber-modal .template-proof {
  bottom: 164px;
  min-width: 220px;
}

.barber-modal .template-booking {
  top: 112px;
}

.creative-modal .template-hero {
  top: 116px;
  max-width: 42%;
}

.creative-modal .template-hero strong {
  font-size: clamp(2.25rem, 3vw, 3.35rem);
  line-height: .96;
}

.creative-modal .template-gallery.main {
  right: 34%;
  top: 178px;
  width: 22%;
  height: 30%;
}

.creative-modal .template-gallery.side {
  right: 42px;
  top: 178px;
  width: 22%;
  height: 30%;
}

.creative-modal .template-gallery.strip {
  right: 42px;
  bottom: 104px;
  width: 48%;
  height: 15%;
}

.creative-modal .template-review {
  display: none;
}

.demo-modal-visual .creative-modal .template-results,
.demo-modal-visual .creative-modal .template-proof,
.demo-modal-visual .creative-modal .template-site-strip {
  display: none;
}

.demo-modal-visual .creative-modal .portfolio-tags {
  left: 42px;
  right: auto;
  bottom: 46px;
  width: auto;
  grid-template-columns: repeat(3, max-content);
}

.fitness-modal .template-site-strip {
  display: none;
}

.fitness-modal .template-hero {
  top: 96px;
  max-width: 40%;
}

.fitness-modal .template-hero strong {
  font-size: clamp(2.2rem, 3.3vw, 3.35rem);
  line-height: .96;
}

.fitness-modal .template-media {
  right: 11%;
  top: 21%;
  width: 27%;
}

.fitness-modal .template-results {
  right: 42px;
  bottom: 252px;
  width: 40%;
}

.fitness-modal .template-results span {
  min-height: 60px;
}

.fitness-modal .template-proof {
  right: 42px;
  bottom: 154px;
  min-width: 210px;
}

.fitness-modal .template-services {
  left: 42px;
  right: auto;
  bottom: 72px;
  width: 36%;
  grid-template-columns: 1fr;
  gap: 10px;
}

.fitness-modal .template-services span {
  min-height: 44px;
  padding: 10px 12px;
}

.fitness-modal .template-form {
  left: auto;
  right: 42px;
  bottom: 72px;
  width: 44%;
}

.fitness-modal .template-review {
  display: none;
}

.creative-modal .template-site-strip {
  bottom: 64px;
  left: auto;
  width: 42%;
}

.template-form {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 118px;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

.template-form i,
.template-form strong {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  color: rgba(222,235,255,.7);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(1,2,10,.5);
  font-style: normal;
  font-weight: 900;
}

.template-form strong {
  color: #02030a;
  border-color: transparent;
  background: var(--cyan);
}

.template-gallery {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), transparent),
    rgba(255,255,255,.055);
  box-shadow: 0 0 45px rgba(100,230,255,.08);
}

.template-gallery.main {
  right: 25%;
  top: 118px;
  width: 28%;
  height: 42%;
}

.template-gallery.side {
  right: 42px;
  top: 152px;
  width: 22%;
  height: 30%;
  animation: floatTile 3.6s ease-in-out infinite;
}

.template-gallery.strip {
  right: 12%;
  bottom: 118px;
  width: 38%;
  height: 18%;
  animation: floatTile 4.3s ease-in-out infinite reverse;
}

.portfolio-tags {
  grid-template-columns: repeat(3, max-content);
  right: auto;
}

.modal-window {
  position: absolute;
  inset: 42px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(1,2,10,.58);
  clip-path: polygon(26px 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%, 0 26px);
}

.barber-modal .modal-window {
  background:
    linear-gradient(110deg, rgba(127,141,163,.16), transparent 42%),
    linear-gradient(135deg, #170f14, #04050b 70%);
}

.fitness-modal .modal-window {
  background:
    radial-gradient(circle at 70% 40%, rgba(100,230,255,.18), transparent 30%),
    linear-gradient(135deg, #031716, #04080c 74%);
}

.creative-modal .modal-window {
  background:
    radial-gradient(circle at 78% 34%, rgba(139,92,255,.24), transparent 30%),
    linear-gradient(135deg, #070a1b, #03050d 72%);
}

.modal-window::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.12);
}

.modal-window::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,.16), transparent 62%);
  animation: panelSweep 3.4s ease-in-out infinite;
}

.modal-window .modal-title {
  position: absolute;
  left: 42px;
  top: 54px;
  z-index: 2;
  max-width: 12ch;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: .9;
}

.modal-window .modal-cta {
  position: absolute;
  left: 42px;
  bottom: 52px;
  z-index: 2;
  padding: 12px 14px;
  color: #02030a;
  background: var(--cyan);
  font-weight: 900;
}

.modal-window .modal-object {
  position: absolute;
  right: 10%;
  top: 22%;
  z-index: 2;
  width: 34%;
  aspect-ratio: 1;
  border: 1px solid rgba(100,230,255,.62);
  box-shadow: 0 0 60px rgba(100,230,255,.16);
  animation: floatTile 4s ease-in-out infinite;
}

.modal-window .modal-object.round {
  border-radius: 50%;
}

.modal-window .modal-object.gallery {
  border-radius: 0;
  box-shadow: 80px 70px 0 rgba(255,255,255,.045), -50px 120px 0 rgba(100,230,255,.07);
}

.modal-window .modal-strip {
  position: absolute;
  right: 8%;
  bottom: 17%;
  z-index: 2;
  width: 42%;
  height: 14px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  box-shadow: 0 0 24px rgba(100,230,255,.5);
  animation: codePulse 2s ease-in-out infinite;
}

.skill-scanner {
  min-height: 120vh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(56px, 6vw, 112px);
  align-items: start;
  padding: 96px 0;
}

.scanner-copy {
  position: sticky;
  top: 128px;
}

.scanner-copy p:last-child {
  max-width: 560px;
  margin-top: 22px;
}

.scanner-copy h2 {
  max-width: 620px;
  font-size: clamp(3.4rem, 4.4vw, 4.75rem);
  line-height: .96;
}

.scanner-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(5,9,21,.76);
}

.scanner-sweep {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 26%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(100,230,255,.14), transparent);
  animation: scannerSweep 4.5s ease-in-out infinite;
}

.scanner-panel article {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 20px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.scanner-panel article:last-child { border-bottom: 0; }
.scanner-panel span {
  color: var(--red);
  font-weight: 900;
}

.scanner-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.scanner-panel p {
  grid-column: 2;
  margin: 0;
}

.section {
  padding: 96px 0;
}

.service-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service,
.price-card,
details {
  min-height: 320px;
  padding: 28px;
  background: rgba(5,9,21,.75);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service:hover,
.price-card:hover,
details:hover {
  background: rgba(8,14,30,.92);
  box-shadow: 0 0 50px rgba(100,230,255,.08);
}

.service span,
.step strong {
  display: block;
  margin-bottom: 46px;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: .12em;
  font-size: .78rem;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
  gap: 54px;
  align-items: center;
  padding: 104px 0;
}

.case-media {
  min-height: 540px;
  border: 1px solid var(--line);
  background: rgba(5,9,21,.74);
  transform: perspective(900px) rotateY(7deg);
  overflow: hidden;
}

.client-case {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(135deg, rgba(100,230,255,.08), transparent 42%),
    rgba(5,9,21,.82);
  box-shadow: 0 32px 90px rgba(0,0,0,.34), 0 0 70px rgba(100,230,255,.08);
}

.browser-top {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.browser-top span:nth-child(2) { background: var(--gold); }
.browser-top span:nth-child(3) { background: var(--red); }

.case-screen {
  height: calc(100% - 47px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  padding: 18px;
}

.case-screen span {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.14), transparent),
    linear-gradient(45deg, #161a22, #070910);
}

.case-screen span:first-child {
  grid-row: span 2;
}

.client-showcase {
  position: relative;
  min-height: 512px;
  height: calc(100% - 47px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(210px, .8fr);
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  padding: 18px;
}

.client-shot {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(100,230,255,.04);
}

.client-shot-main {
  grid-row: span 2;
}

.client-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.01);
  transition: transform .55s ease, filter .55s ease;
}

.client-shot:hover img {
  transform: scale(1.055);
  filter: saturate(1.16) contrast(1.08);
}

.client-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 56%, rgba(1,2,10,.82)),
    linear-gradient(110deg, rgba(100,230,255,.16), transparent 34%);
  pointer-events: none;
}

.client-shot span,
.client-badge {
  position: absolute;
  z-index: 2;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.client-shot span {
  left: 14px;
  bottom: 12px;
  color: #f4f8ff;
  font-size: .7rem;
}

.client-badge {
  right: 18px;
  bottom: 18px;
  padding: 9px 11px;
  color: #02030a;
  background: var(--cyan);
  font-size: .68rem;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  box-shadow: 0 0 28px rgba(100,230,255,.26);
}

.case-screen span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(100,230,255,.18), transparent);
  transform: translateX(-100%);
  animation: panelSweep 4.2s ease-in-out infinite;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.feature-list li {
  padding: 10px 12px;
  color: #dbe5ff;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 27px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--red), var(--gold));
}

.step {
  position: relative;
  padding-top: 74px;
}

.step::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 30px;
  height: 30px;
  background: var(--bg);
  border: 1px solid var(--cyan);
  box-shadow: 0 0 24px rgba(100,230,255,.5);
  transform: rotate(45deg);
}

.price-card {
  min-height: 610px;
  transform-style: preserve-3d;
}

.price-card.featured {
  background:
    linear-gradient(160deg, rgba(100,230,255,.16), rgba(127,141,163,.1)),
    rgba(5,9,21,.82);
}

.price-card strong {
  display: block;
  margin: 14px 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0;
  padding-left: 18px;
  color: #dce5ff;
}

details {
  min-height: auto;
}

summary {
  cursor: pointer;
  list-style: none;
}

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

details summary {
  margin-bottom: 0;
}

details[open] summary {
  margin-bottom: 12px;
  color: var(--cyan);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: 48px;
  align-items: start;
  padding: 112px 0;
}

.contact-copy a {
  display: inline-block;
  margin-top: 20px;
  color: var(--cyan);
  font-weight: 900;
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(5,9,21,.78);
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.045);
  color: var(--ink);
  padding: 15px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(100,230,255,.08);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.is-success {
  color: #8af7c8;
}

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

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: rgba(1,2,10,.7);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  min-width: max-content;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .76s ease, transform .76s ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes bootLine {
  0%, 100% { transform: scaleX(.15); opacity: .4; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes pulseSquare {
  50% { opacity: .35; transform: scale(.72); }
}

@keyframes headlineGlitch {
  0%, 88%, 100% { transform: translate(0); filter: none; }
  89% { transform: translate(4px, -2px); filter: hue-rotate(20deg); }
  90% { transform: translate(-5px, 2px); }
  91% { transform: translate(2px, 3px); }
  92% { transform: translate(0); filter: none; }
}

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

@keyframes panelSweep {
  0%, 32% { transform: translateX(-100%); }
  70%, 100% { transform: translateX(100%); }
}

@keyframes codePulse {
  50% { transform: scaleX(.58); opacity: .45; }
}

@keyframes pulseRing {
  0%, 100% { transform: translate(-50%, -50%) scale(.8); opacity: .35; }
  50% { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
}

@keyframes scannerSweep {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(520%); }
}

@keyframes miniCtaPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(100,230,255,0); }
  50% { box-shadow: 0 0 24px rgba(100,230,255,.45); }
}

@keyframes bladeSweep {
  0%, 100% { transform: translateX(-12%) skewX(-22deg); opacity: .55; }
  50% { transform: translateX(24%) skewX(-22deg); opacity: 1; }
}

@keyframes knifeGlint {
  0%, 100% { opacity: .45; transform: rotate(-28deg) translateX(-12px); }
  50% { opacity: 1; transform: rotate(-28deg) translateX(18px); }
}

@keyframes pulseRingFlat {
  0%, 100% { transform: scale(.9); opacity: .72; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes progressSurge {
  0%, 100% { transform: scaleX(.52); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}

@keyframes floatTile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

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

@media (max-width: 980px) {
  .site-header {
    position: sticky;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 86px 18px 28px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(3,6,11,.76), rgba(3,6,11,.34), rgba(3,6,11,.82)),
      radial-gradient(circle at 72% 50%, rgba(100,230,255,.28), transparent 42%);
  }

  .hero-content {
    max-width: min(430px, 78vw);
    padding-top: 22px;
  }

  h1 {
    max-width: 8.7ch;
    font-size: clamp(3.35rem, 13vw, 4.85rem);
  }

  .hero-line {
    max-width: 35ch;
  }

  .hero-readout,
  .demo-grid,
  .demo-modal-panel,
  .skill-scanner,
  .service-grid,
  .pricing-grid,
  .faq-grid,
  .timeline,
  .case-study,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-readout {
    position: static;
    margin-top: 34px;
  }

  .hero-readout span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-readout span:last-child {
    border-bottom: 0;
  }

  .demo-modal-panel {
    max-height: calc(100svh - 24px);
  }

  .demo-modal-visual {
    min-height: min(680px, calc(100svh - 80px));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .demo-modal-copy {
    padding: 28px;
  }

  .modal-template {
    inset: 24px;
  }

  .template-nav {
    left: 24px;
    right: 24px;
    top: 22px;
  }

  .demo-modal .template-nav {
    right: 104px;
  }

  .template-nav span:nth-child(3) {
    display: none;
  }

  .template-hero {
    left: 28px;
    right: 28px;
    top: 88px;
    max-width: 58%;
  }

  .template-hero strong {
    font-size: clamp(1.45rem, 4.8vw, 2.35rem);
  }

  .template-media {
    right: 28px;
    top: 35%;
    width: 30%;
  }

  .template-services,
  .template-form {
    left: 28px;
    right: auto;
    width: 52%;
    bottom: 28px;
  }

  .barber-modal .template-services {
    bottom: 72px;
  }

  .barber-modal .template-flow {
    left: 28px;
    width: 52%;
    bottom: 152px;
  }

  .template-results {
    right: 28px;
    width: 42%;
    bottom: 190px;
  }

  .template-review {
    right: 28px;
    max-width: 210px;
  }

  .template-site-strip {
    left: 28px;
    right: 28px;
    bottom: 22px;
  }

  .template-proof {
    right: 28px;
    bottom: 118px;
  }

  .template-booking {
    right: 28px;
    top: auto;
    bottom: 118px;
  }

  .barber-modal .template-hero {
    top: 96px;
    max-width: 42%;
  }

  .barber-modal .template-hero strong,
  .creative-modal .template-hero strong {
    font-size: clamp(2.05rem, 6vw, 3rem);
    line-height: .98;
  }

  .barber-modal .template-media {
    right: 28px;
    top: 206px;
    width: 32%;
  }

  .barber-modal .template-review {
    right: 36px;
    top: 154px;
    max-width: 230px;
  }

  .barber-modal .template-booking {
    top: 96px;
    bottom: auto;
  }

  .barber-modal .template-flow {
    left: 28px;
    width: 44%;
    bottom: 142px;
  }

  .barber-modal .template-proof {
    right: 28px;
    bottom: 150px;
    min-width: 190px;
  }

  .barber-modal .template-services {
    left: 28px;
    right: 28px;
    bottom: 58px;
    width: auto;
  }

  .fitness-modal .template-hero {
    top: 86px;
    max-width: 42%;
  }

  .fitness-modal .template-hero strong {
    font-size: clamp(1.55rem, 4vw, 2.2rem);
  }

  .fitness-modal .template-media {
    right: 28px;
    top: 22%;
    width: 30%;
  }

  .fitness-modal .template-results {
    right: 28px;
    bottom: 198px;
    width: 42%;
  }

  .fitness-modal .template-proof {
    right: 28px;
    bottom: 116px;
    min-width: 160px;
  }

  .fitness-modal .template-services {
    left: 28px;
    right: auto;
    bottom: 106px;
    width: 36%;
  }

  .fitness-modal .template-services span {
    min-height: 38px;
    padding: 8px;
  }

  .fitness-modal .template-form {
    left: auto;
    right: 28px;
    bottom: 28px;
    width: 46%;
  }

  .creative-modal .template-hero {
    top: 100px;
    max-width: 40%;
  }

  .creative-modal .template-gallery.main {
    right: 34%;
    top: 178px;
    width: 22%;
    height: 30%;
  }

  .creative-modal .template-gallery.side {
    right: 28px;
    top: 178px;
    width: 22%;
    height: 30%;
  }

  .creative-modal .template-gallery.strip {
    right: 28px;
    bottom: 104px;
    width: 48%;
    height: 15%;
  }

  .creative-modal .template-review {
    display: none;
  }

  .creative-modal .template-results {
    right: 28px;
    bottom: 124px;
    width: 42%;
  }

  .creative-modal .template-proof {
    right: 28px;
    bottom: 52px;
    min-width: 230px;
  }

  .creative-modal .template-results,
  .creative-modal .template-proof,
  .creative-modal .template-site-strip {
    display: none;
  }

  .creative-modal .portfolio-tags {
    left: 28px;
    right: 28px;
    bottom: 28px;
    width: auto;
    grid-template-columns: repeat(3, max-content);
  }

  .scanner-copy {
    position: relative;
    top: auto;
  }

  .skill-scanner {
    min-height: auto;
  }

  .case-media {
    transform: none;
  }

  .client-case {
    min-height: 520px;
  }

  .client-showcase {
    min-height: 472px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1.25fr .85fr;
  }

  .client-shot-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .timeline::before {
    left: 14px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .step {
    padding-top: 0;
    padding-left: 56px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  h1 {
    max-width: 9.2ch;
    font-size: clamp(3.4rem, 16vw, 5.8rem);
  }

  .hero-line {
    font-size: 1.02rem;
  }

  .statement,
  .demos,
  .skill-scanner,
  .section,
  .case-study,
  .contact {
    width: min(calc(100% - 32px), var(--max));
  }

  .client-case {
    min-height: auto;
  }

  .client-showcase {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    padding: 14px;
  }

  .client-shot,
  .client-shot-main {
    aspect-ratio: 16 / 10;
    grid-column: auto;
  }

  .client-shot-main {
    aspect-ratio: 4 / 3;
  }

  .client-badge {
    right: 14px;
    bottom: 14px;
    font-size: .58rem;
  }

  .statement {
    padding: 70px 0;
  }

  .demo-tile {
    min-height: 0;
    padding: 18px;
  }

  .demo-preview {
    inset: auto;
    height: clamp(520px, 112vw, 620px);
    margin-bottom: 24px;
  }

  .template-map {
    gap: 7px;
  }

  .template-map li {
    min-height: 52px;
    padding: 8px;
  }

  .template-map span {
    font-size: .68rem;
  }

  .modal-template-spec {
    grid-template-columns: 1fr;
  }

  .mini-nav span:nth-child(3) {
    display: none;
  }

  .mini-service-stack,
  .mini-lead-form {
    grid-template-columns: 1fr;
  }

  .mini-service-stack {
    right: auto;
    width: 48%;
    bottom: 42px;
  }

  .barber-site .mini-service-stack {
    right: 22px;
    width: auto;
    bottom: 54px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mini-service-stack span {
    min-height: 32px;
  }

  .barber-site .mini-service-stack span {
    min-height: 34px;
    padding: 6px;
    font-size: .5rem;
  }

  .barber-site .mini-steps {
    bottom: 16px;
    max-width: 56%;
  }

  .barber-site .mini-review {
    display: none;
  }

  .barber-site .mini-booking {
    bottom: 16px;
  }

  .mini-photo-wall {
    top: 130px;
    bottom: 72px;
  }

  .mini-proof {
    left: 22px;
    right: auto;
    top: 230px;
    bottom: auto;
    max-width: 44%;
    font-size: .54rem;
  }

  .mini-plan-list {
    top: auto;
    width: 48%;
    bottom: 160px;
  }

  .fitness-site .mini-results {
    top: 292px;
    bottom: auto;
    width: 36%;
  }

  .fitness-site .mini-stat.ring {
    top: 150px;
    width: 88px;
    height: 88px;
    font-size: .9rem;
  }

  .fitness-site .mini-stat.card {
    bottom: 126px;
    padding: 10px 12px;
  }

  .mini-lead-form {
    right: auto;
    width: 48%;
  }

  .mini-lead-form i:nth-child(2) {
    display: none;
  }

  .template-nav span:not(:first-child):not(:last-child) {
    display: none;
  }

  .demo-modal-close {
    top: 8px;
    right: 8px;
    padding: 8px 10px;
    font-size: .78rem;
  }

  .demo-modal .template-nav {
    right: 82px;
  }

  .demo-modal .template-nav span {
    display: none;
  }

  .template-hero {
    max-width: 60%;
  }

  .barber-modal .template-hero,
  .creative-modal .template-hero {
    top: 88px;
    max-width: 60%;
  }

  .template-hero em {
    display: none;
  }

  .template-hero strong {
    font-size: 1.35rem;
    line-height: .94;
  }

  .barber-modal .template-hero strong,
  .creative-modal .template-hero strong {
    font-size: 1.35rem;
    line-height: .94;
  }

  .template-media {
    top: 45%;
    width: 38%;
    opacity: .7;
  }

  .template-services {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .barber-modal .template-services {
    left: 28px;
    right: 28px;
    width: auto;
    top: auto;
    bottom: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .barber-modal .template-services span {
    min-height: 30px;
    padding: 7px 10px;
    font-size: .58rem;
  }

  .template-flow,
  .template-results {
    left: 28px;
    right: 28px;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .template-flow {
    bottom: 82px;
  }

  .barber-modal .template-flow {
    left: 28px;
    right: 28px;
    width: auto;
    bottom: 82px;
  }

  .template-flow span,
  .template-results span {
    min-height: 34px;
    padding: 7px;
    font-size: .56rem;
  }

  .template-review,
  .template-site-strip,
  .template-results {
    display: none;
  }

  .fitness-modal .template-services {
    left: 28px;
    right: 28px;
    width: auto;
    bottom: 92px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fitness-modal .template-form {
    left: 28px;
    right: 28px;
    width: auto;
    bottom: 28px;
    grid-template-columns: 1fr auto;
  }

  .fitness-modal .template-form i:nth-child(2) {
    display: none;
  }

  .creative-modal .portfolio-tags {
    left: 28px;
    right: 28px;
    width: auto;
    bottom: 28px;
    grid-template-columns: repeat(3, max-content);
  }

  .template-services span {
    min-height: 38px;
  }

  .template-proof,
  .template-booking {
    display: none;
  }

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

  .template-gallery.main {
    left: 28px;
    right: auto;
    top: 225px;
    width: 43%;
    height: 26%;
  }

  .template-gallery.side {
    right: 28px;
    top: 245px;
    width: 34%;
    height: 21%;
  }

  .template-gallery.strip {
    right: 44px;
    bottom: 82px;
    width: 52%;
    height: 15%;
  }

  .creative-modal .template-gallery.main {
    left: 28px;
    right: auto;
    top: 225px;
    width: 43%;
    height: 26%;
  }

  .creative-modal .template-gallery.side {
    right: 28px;
    top: 245px;
    width: 34%;
    height: 21%;
  }

  .creative-modal .template-gallery.strip {
    right: 44px;
    bottom: 128px;
    width: 46%;
    height: 13%;
  }

  .mini-hero strong,
  .mini-caption strong {
    font-size: 1.16rem;
  }

  .demo-modal {
    padding: 12px;
  }

  .modal-window {
    inset: 20px;
  }

  .modal-window .modal-title {
    left: 28px;
    top: 44px;
    font-size: 2.1rem;
  }

  .modal-window .modal-cta {
    left: 28px;
    bottom: 36px;
  }

  .scanner-panel article {
    grid-template-columns: 1fr;
  }

  .scanner-panel p {
    grid-column: 1;
  }

  .service,
  .price-card,
  details,
  .contact-form {
    padding: 20px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
