:root {
  --bg: #08090b;
  --bg-2: #0e1014;
  --surface: #14171c;
  --surface-2: #191d24;
  --text: #f5f5f2;
  --muted: #989ca5;
  --muted-2: #68707c;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #f97316;
  --accent-2: #f59e0b;
  --cool: #38bdf8;
  --violet: #8b5cf6;
  --radius: 10px;
  --container: 1180px;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(249, 115, 22, 0.16), transparent 32rem),
    radial-gradient(circle at 90% 14%, rgba(56, 189, 248, 0.08), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.menu-open,
body.loading {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

img {
  max-width: 100%;
}

::selection {
  background: rgba(249, 115, 22, 0.35);
  color: var(--text);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.035;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 22%),
    repeating-radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(76px, 9vw, 128px) 0;
  position: relative;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(245, 245, 242, 0.72);
  font-size: clamp(0.74rem, 1vw, 0.84rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.7);
  vertical-align: 1px;
}

.section-title {
  margin: 0;
  max-width: 760px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2.35rem, 4.2vw, 3rem);
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-head--wide {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 32px;
  align-items: end;
}

.section-head--wide > p,
.screens__grid > div > p,
.deliverables__grid > div > p,
.contact__copy > p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.75;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 19px;
  border-radius: var(--radius);
  font-weight: 800;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, color 0.28s ease, background 0.28s ease;
}

.btn span,
.text-link span {
  display: inline-block;
  transition: transform 0.28s ease;
}

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

.btn:hover span {
  transform: translateX(4px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 18px 44px rgba(249, 115, 22, 0.24);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #fff, #fed7aa);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.btn--primary:hover::before {
  opacity: 1;
  color: black;
}

.btn--ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(249, 115, 22, 0.6);
  background: rgba(249, 115, 22, 0.1);
}

.btn--small {
  min-height: 42px;
  padding-inline: 15px;
  font-size: 0.9rem;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(245, 245, 242, 0.72);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  opacity: 0;
  display: grid;
  place-items: center;
  transition: width 0.22s ease, height 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.cursor span {
  opacity: 0;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

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

.cursor.is-button {
  width: 34px;
  height: 34px;
  border-color: var(--accent);
}

.cursor.is-view {
  width: 74px;
  height: 74px;
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.18);
  mix-blend-mode: normal;
}

.cursor.is-view span {
  opacity: 1;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #050607;
}

.loader__panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: #050607;
}

.loader__panel--top {
  top: 0;
}

.loader__panel--bottom {
  bottom: 0;
}

.loader__inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(340px, calc(100vw - 50px));
}

.loader__symbol {
  width: 58px;
  height: 1px;
  margin-bottom: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.loader__symbol span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
}

.loader__brand {
  text-align: center;
  font-family: Manrope, Inter, sans-serif;
  line-height: 1;
}

.loader__word {
  display: flex;
  justify-content: center;
  gap: 0.08em;
  color: var(--text);
  font-size: clamp(2.2rem, 11vw, 4rem);
  font-weight: 800;
}

.loader__word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
}

.loader__studio {
  margin-top: 10px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.48em;
  opacity: 0;
}

.loader__progress {
  width: 100%;
  height: 1px;
  margin-top: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.loader__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.loader__count {
  margin-top: 14px;
  color: rgba(245, 245, 242, 0.58);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 90;
  opacity: 0;
}

.nav {
  width: min(calc(100% - 40px), 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled .nav {
  padding: 7px 10px;
  border-color: var(--line);
  background: rgba(8, 9, 11, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.26);
}

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

.brand__text {
  white-space: nowrap;
}

.nav__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.nav__links a {
  position: relative;
  padding: 9px 11px;
  color: rgba(245, 245, 242, 0.68);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.24s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.26s ease;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 20px;
  background: var(--text);
  transition: transform 0.25s ease;
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 100px 24px 40px;
  visibility: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(249, 115, 22, 0.24), transparent 20rem),
    rgba(8, 9, 11, 0.96);
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__inner {
  display: grid;
  gap: 16px;
  text-align: center;
}

.mobile-menu a {
  opacity: 0;
  transform: translateY(30px);
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2.5rem, 12vw, 4.6rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.mobile-menu p {
  align-self: end;
  margin: 0;
  color: var(--muted);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 130px;
  overflow: hidden;
}

.ambient {
  position: absolute;
  pointer-events: none;
  filter: blur(24px);
  opacity: 0.62;
}

.ambient--hero {
  right: -10vw;
  top: 14vh;
  width: 44vw;
  height: 44vw;
  background:
    radial-gradient(circle, rgba(249, 115, 22, 0.28), transparent 54%),
    radial-gradient(circle at 70% 38%, rgba(139, 92, 246, 0.14), transparent 34%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

.hero__title {
  margin: 0;
  max-width: 740px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(3rem, 5.4vw, 4.5rem);
  font-weight: 790;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero__title > span:not(.line-mask),
.hero__title .accent-line {
  color: #fed7aa;
  background: linear-gradient(90deg, #fff7ed, #fb923c 54%, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.line-mask {
  display: block;
  overflow: hidden;
}

.line-mask > span {
  display: block;
}

.hero__copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.13rem);
  line-height: 1.78;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__proof {
  margin: 18px 0 0;
  color: rgba(245, 245, 242, 0.54);
  font-size: 0.91rem;
  font-weight: 700;
}

.hero-showcase {
  position: relative;
  min-height: 570px;
  perspective: 1100px;
}

.browser-mockup,
.phone-mockup {
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.browser-mockup {
  overflow: hidden;
  border-radius: 16px;
}

.browser-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.browser-bar span:first-child {
  background: #fb7185;
}

.browser-bar span:nth-child(2) {
  background: #fbbf24;
}

.browser-bar span:nth-child(3) {
  background: #34d399;
}

.browser-bar p {
  margin: 0 0 0 8px;
  overflow: hidden;
  color: rgba(245, 245, 242, 0.42);
  font-size: 0.73rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.browser-mockup--main {
  position: absolute;
  top: 74px;
  left: 0;
  width: 79%;
  min-height: 355px;
  transform: rotateY(-8deg) rotateZ(-2deg);
}

.browser-mockup--back {
  position: absolute;
  right: 0;
  top: 0;
  width: 61%;
  min-height: 278px;
  transform: rotateY(9deg) rotateZ(4deg);
  opacity: 0.78;
}

.phone-mockup {
  position: absolute;
  right: 8%;
  bottom: 24px;
  width: 190px;
  min-height: 350px;
  padding: 12px;
  border-radius: 28px;
  transform: rotateZ(5deg);
}

.phone-speaker {
  width: 54px;
  height: 5px;
  margin: 0 auto 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
}

.mock-screen,
.phone-screen {
  min-height: 312px;
  padding: 28px;
}

.mock-screen p,
.phone-screen p {
  margin: 0 0 12px;
  color: rgba(245, 245, 242, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mock-screen h2,
.phone-screen h2 {
  margin: 0;
  max-width: 360px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.mock-screen--salon {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.3), rgba(8, 9, 11, 0.86)),
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.22), transparent 17rem),
    linear-gradient(135deg, #3d2626, #0d0f13 66%);
}

.mock-screen--invite {
  background:
    radial-gradient(circle at 18% 20%, rgba(251, 191, 36, 0.22), transparent 14rem),
    radial-gradient(circle at 80% 72%, rgba(236, 72, 153, 0.16), transparent 12rem),
    #111318;
}

.screen-lines {
  width: min(260px, 70%);
  height: 88px;
  margin-top: 44px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.26)) 0 0 / 100% 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14)) 0 28px / 72% 1px no-repeat,
    linear-gradient(rgba(249, 115, 22, 0.72), rgba(249, 115, 22, 0.72)) 0 72px / 42% 8px no-repeat;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 36px;
}

.mini-gallery span {
  height: 86px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
}

.phone-screen {
  min-height: 310px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 20%, rgba(249, 115, 22, 0.28), transparent 9rem),
    linear-gradient(180deg, #11141a, #0b0d10);
}

.phone-screen h2 {
  font-size: 1.55rem;
}

.phone-map {
  height: 130px;
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.12) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 45%, rgba(255, 255, 255, 0.12) 46% 48%, transparent 49%),
    radial-gradient(circle at 58% 42%, var(--accent) 0 5px, transparent 6px),
    rgba(255, 255, 255, 0.04);
}

.trust-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.028);
}

.trust-strip__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  animation: marquee 27s linear infinite;
}

.trust-strip span {
  color: rgba(245, 245, 242, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-strip i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
}

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

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 7vw, 92px);
}

.value-rows {
  border-top: 1px solid var(--line);
}

.value-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.value-row span {
  color: var(--text);
  font-weight: 800;
}

.value-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.services {
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    var(--bg-2);
  background-size: 72px 72px;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 80px minmax(190px, 0.72fr) 1fr 46px;
  gap: 28px;
  align-items: center;
  min-height: 142px;
  border-bottom: 1px solid var(--line);
  transition: background 0.28s ease, padding-left 0.28s ease;
}

.service-row:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.service-row > span {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 0.28s ease;
}

.service-row:hover > span {
  transform: translateX(8px);
}

.service-row h3 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  font-weight: 740;
  letter-spacing: 0;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-row a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.service-row:hover a {
  transform: translate(6px, -6px);
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.12);
}

.projects {
  display: grid;
  gap: clamp(58px, 8vw, 96px);
}

.project {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.project--reverse {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.1fr);
}

.project--reverse .project__visual {
  order: 2;
}

.project__visual {
  overflow: hidden;
  border-radius: 18px;
}

.project__mock {
  transform: translateZ(0);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.project-preview {
  min-height: clamp(330px, 41vw, 520px);
  max-height: clamp(330px, 41vw, 520px);
  height: clamp(330px, 41vw, 520px);
  overflow: hidden;
  overscroll-behavior: contain;
  position: relative;
}

.project:hover .project__mock {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.34);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.48);
}

.project-preview--salon {
  background:
    linear-gradient(90deg, rgba(7, 7, 9, 0.15), rgba(7, 7, 9, 0.82)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 20%, transparent 21%),
    radial-gradient(circle at 26% 28%, rgba(255, 214, 186, 0.24), transparent 16rem),
    linear-gradient(135deg, #4a2d2d, #121315 66%);
}

.project-preview--agency {
  background:
    radial-gradient(circle at 20% 18%, rgba(249, 115, 22, 0.32), transparent 18rem),
    radial-gradient(circle at 80% 70%, rgba(56, 189, 248, 0.12), transparent 14rem),
    linear-gradient(135deg, #070b18, #15191f 70%);
}

.project-preview--realestate {
  background:
    linear-gradient(120deg, rgba(12, 15, 12, 0.24), rgba(12, 15, 12, 0.88)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #263025, #0c0f0d);
}

.project-preview--academy {
  background:
    radial-gradient(circle at 22% 26%, rgba(255, 255, 255, 0.22), transparent 13rem),
    linear-gradient(135deg, #3e2932, #101116 66%);
}

.project-preview--invite {
  background:
    radial-gradient(circle at 22% 24%, rgba(245, 158, 11, 0.2), transparent 13rem),
    radial-gradient(circle at 76% 68%, rgba(236, 72, 153, 0.2), transparent 14rem),
    linear-gradient(135deg, #26151d, #101116 72%);
}

.project-preview--pearls {
  background:
    radial-gradient(circle at 25% 20%, rgba(244, 114, 182, 0.18), transparent 14rem),
    linear-gradient(135deg, #2b1d24, #101116 72%);
}

.project-preview--taxlaw {
  background:
    radial-gradient(circle at 20% 18%, rgba(56, 189, 248, 0.16), transparent 15rem),
    linear-gradient(135deg, #111827, #090b0f 72%);
}

.live-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.site-capture {
  min-height: 950px;
  padding: clamp(20px, 3vw, 34px);
}

.site-capture section {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.capture-hero {
  min-height: 275px;
  padding: clamp(22px, 4vw, 46px);
  border-radius: 18px;
  display: grid;
  align-content: end;
  overflow: hidden;
  position: relative;
}

.capture-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(249, 115, 22, 0.35), transparent 16rem);
}

.capture-hero > * {
  position: relative;
  z-index: 1;
}

.capture-hero p {
  margin: 0 0 12px;
  color: rgba(245, 245, 242, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.capture-hero h4 {
  max-width: 540px;
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.capture-hero span {
  width: fit-content;
  margin-top: 26px;
  padding: 11px 14px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
}

.capture-grid,
.capture-gallery,
.capture-dashboard,
.capture-course,
.capture-invite-grid,
.capture-map {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

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

.capture-grid--three,
.capture-course,
.capture-invite-grid,
.capture-dashboard {
  grid-template-columns: repeat(3, 1fr);
}

.capture-grid i,
.capture-gallery i,
.capture-dashboard i,
.capture-course i,
.capture-invite-grid i,
.capture-map i {
  display: block;
  min-height: 140px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.capture-gallery {
  grid-template-columns: repeat(4, 1fr);
}

.capture-gallery i {
  min-height: 190px;
}

.capture-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
}

.capture-split > div:first-child {
  min-height: 230px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.2), transparent 10rem),
    linear-gradient(135deg, rgba(249, 115, 22, 0.16), rgba(255, 255, 255, 0.04));
}

.capture-split > div:last-child {
  display: grid;
  align-content: center;
  gap: 12px;
}

.capture-split b {
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.45rem;
}

.capture-split em {
  display: block;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(245, 245, 242, 0.68);
  font-style: normal;
}

.capture-band,
.capture-form {
  min-height: 210px;
  margin-top: 16px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    rgba(255, 255, 255, 0.05);
  background-size: 34px 34px;
}

.capture-map {
  min-height: 260px;
  grid-template-columns: 1fr 0.7fr 0.7fr;
  padding: 18px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.14) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 45%, rgba(255, 255, 255, 0.14) 46% 48%, transparent 49%),
    rgba(255, 255, 255, 0.04);
}

.capture-map i {
  min-height: 220px;
  background:
    radial-gradient(circle at 56% 42%, var(--accent) 0 9px, transparent 10px),
    rgba(255, 255, 255, 0.055);
}

.project-preview--salon .capture-hero {
  background:
    linear-gradient(90deg, rgba(57, 33, 33, 0.2), rgba(8, 9, 11, 0.78)),
    #302020;
}

.project-preview--agency .capture-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(249, 115, 22, 0.28), transparent 16rem),
    #0d1324;
}

.project-preview--realestate .capture-hero {
  background:
    linear-gradient(120deg, rgba(28, 45, 30, 0.2), rgba(8, 9, 11, 0.82)),
    #1a2419;
}

.project-preview--academy .capture-hero {
  background:
    linear-gradient(120deg, rgba(73, 39, 53, 0.25), rgba(8, 9, 11, 0.82)),
    #2d1e27;
}

.project-preview--invite .capture-hero {
  background:
    radial-gradient(circle at 80% 24%, rgba(236, 72, 153, 0.22), transparent 15rem),
    #27151d;
}

.project__content {
  overflow: hidden;
}

.project__count,
.project__meta {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.project__meta {
  margin-top: 16px;
  color: rgba(245, 245, 242, 0.55);
}

.project__content h3 {
  margin: 14px 0 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.project__content p:not(.project__count):not(.project__meta) {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.76;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.tag-row span,
.tech-list span,
.receive-list span {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 245, 242, 0.68);
  font-size: 0.84rem;
  font-weight: 700;
}

.tag-row span {
  padding: 8px 10px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: var(--text);
  font-weight: 800;
}

.text-link:hover span {
  transform: translate(5px, -5px);
}

.results {
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.08), rgba(255, 255, 255, 0.02));
}

.results__grid,
.screens__grid,
.deliverables__grid,
.contact__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.metric-grid article {
  min-height: 178px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.metric-grid article:last-child {
  border-right: 0;
}

.metric-grid strong {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  color: var(--text);
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding-top: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.timeline__progress {
  position: absolute;
  top: 12px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--cool));
}

.timeline__item {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.timeline__item::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 22px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--muted-2);
  transition: background 0.28s ease, box-shadow 0.28s ease;
}

.timeline__item.is-active {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.46);
  background: rgba(249, 115, 22, 0.09);
}

.timeline__item.is-active::before {
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.14);
}

.timeline__item span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.timeline__item h3 {
  margin: 20px 0 10px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.25rem;
}

.timeline__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.different {
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 18%, rgba(249, 115, 22, 0.2), transparent 28rem),
    linear-gradient(135deg, #111419, #08090b 70%);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}

.reason-grid article {
  padding: clamp(22px, 3vw, 34px);
  background: #0c0e12;
}

.reason-grid span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.reason-grid h3 {
  margin: 42px 0 14px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.reason-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.device-stage {
  position: relative;
  min-height: 480px;
  isolation: isolate;
}

.device {
  position: absolute;
  border: 1px solid var(--line-strong);
  background: #0b0d10;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.device img {
  display: block;
  width: 100%;
  height: calc(100% - 34px);
  object-fit: cover;
  object-position: top left;
}

.device__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
}

.device__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.device__bar span:first-child {
  background: #fb7185;
}

.device__bar span:nth-child(2) {
  background: #fbbf24;
}

.device__bar span:nth-child(3) {
  background: #34d399;
}

.device__bar--small {
  justify-content: center;
  height: 24px;
}

.device__bar--small span {
  width: 46px;
  height: 4px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.24);
}

.device__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 6px;
  border-radius: 20px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.28);
}

.device--tablet img {
  height: calc(100% - 24px);
}

.device--mobile img {
  height: 100%;
  object-position: top center;
}

.device--desktop {
  left: 3%;
  top: 50px;
  width: 78%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
}

.device--tablet {
  right: 7%;
  bottom: 20px;
  width: 34%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
}

.device--mobile {
  left: 8%;
  bottom: 0;
  width: 21%;
  aspect-ratio: 9 / 18;
  border-radius: 28px;
}

.technology {
  background: var(--bg-2);
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-list span {
  padding: 13px 16px;
}

.deliverables__grid {
  align-items: start;
}

.receive-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.receive-list span {
  padding: 18px;
}

.contact {
  overflow: hidden;
  background: linear-gradient(135deg, #0f1116, #08090b 68%);
}

.ambient--cta {
  left: 50%;
  top: 18%;
  width: 48vw;
  height: 48vw;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 58%);
}

.contact__copy {
  position: relative;
  z-index: 1;
}

.contact__copy .section-title {
  max-width: 590px;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.project-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.form-field {
  position: relative;
}

.form-field--full,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: rgba(8, 9, 11, 0.54);
  color: var(--text);
  padding: 21px 14px 11px;
  transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 138px;
}

.form-field select {
  appearance: none;
  padding-top: 24px;
  padding-bottom: 10px;
}

.form-field label {
  position: absolute;
  top: 16px;
  left: 14px;
  color: rgba(245, 245, 242, 0.48);
  font-size: 0.92rem;
  pointer-events: none;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(249, 115, 22, 0.72);
  background: rgba(8, 9, 11, 0.78);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.08);
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:valid + label,
.form-field select + label {
  top: 7px;
  color: var(--accent);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field small {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: #fb7185;
  font-size: 0.78rem;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: rgba(251, 113, 133, 0.8);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #86efac;
  font-weight: 700;
}

.footer {
  padding: 70px 0 28px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 0%, rgba(249, 115, 22, 0.14), transparent 23rem),
    #050607;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 34px;
}

.footer h2 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.footer p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer nav,
.footer__social,
.footer__contact {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer a {
  color: rgba(245, 245, 242, 0.68);
  font-weight: 700;
  transition: color 0.24s ease;
}

.footer a:hover {
  color: var(--text);
}

.footer__social span {
  display: inline-block;
  transition: transform 0.24s ease;
}

.footer__social a:hover span {
  transform: rotate(45deg);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer__bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.fade-up,
.value-row,
.service-row,
.project,
.metric-grid article,
.timeline__item,
.reason-grid article,
.device,
.tech-list span,
.receive-list span,
.project-form,
.footer__grid > * {
  will-change: transform, opacity;
}

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

  .loader {
    display: none;
  }
}
