﻿:root {
  --black: #050505;
  --paper: #f5f2ef;
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.13);
  --purple: #a93dff;
  --pink: #d854ca;
  --orange: #ff7548;
  --gradient: linear-gradient(100deg, var(--purple), var(--pink) 48%, var(--orange));
  --heading: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--black);
  color: var(--paper);
  font-family: "Inter", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-shell {
  width: 100%;
  overflow: clip;
  background: #050505;
}

.grid-surface {
  isolation: isolate;
}

.grid-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, transparent calc(100% - 1px), rgba(255, 255, 255, 0.115) calc(100% - 1px)),
    linear-gradient(to bottom, transparent calc(100% - 1px), rgba(255, 255, 255, 0.115) calc(100% - 1px));
  background-size: 8.34vw 8.34vw;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.72));
}

/* Shared UI */
.brand {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  width: max-content;
  color: white;
  font-family: "Pacifico", cursive;
  font-size: clamp(25px, 2.05vw, 38px);
  line-height: 1;
  letter-spacing: -1.5px;
  transform: rotate(-3deg);
  text-shadow: 0 0 3px #fff, 0 0 9px rgba(255, 97, 204, 0.78), 0 0 18px rgba(152, 57, 255, 0.72);
}

.brand span {
  margin-left: 2px;
  font-family: "Inter", sans-serif;
  font-size: 0.65em;
  font-weight: 900;
  letter-spacing: -2px;
  transform: translateY(-1px);
}

.brand i {
  margin-left: 2px;
  font-family: sans-serif;
  font-size: 0.48em;
  font-style: normal;
  font-weight: 900;
  transform: translateY(-3px);
}

.gradient-button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2px;
  border-radius: 4px;
  background: var(--gradient);
  box-shadow: 0 0 22px rgba(195, 73, 236, 0.18);
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gradient-button::before {
  content: "";
  position: absolute;
  inset: -100% 55%;
  width: 28px;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(8px);
  transform: rotate(22deg);
  transition: left 450ms ease;
}

.gradient-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(195, 73, 236, 0.44);
}

.gradient-button:hover::before {
  left: 115%;
}

.gradient-button span {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 40px;
  place-items: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 2px;
  background: var(--gradient);
}

/* Fixed header and menu */
.site-header {
  position: fixed;
  top: 25px;
  right: 2.7vw;
  left: 2.7vw;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

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

.header-actions {
  display: flex;
  height: 51px;
  align-items: stretch;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 5px;
  background: rgba(3, 3, 3, 0.9);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
}

.header-actions .gradient-button {
  min-height: 43px;
}

.header-actions .gradient-button span {
  min-height: 39px;
  padding: 0 17px;
}

.menu-button {
  position: relative;
  width: 58px;
  cursor: pointer;
  background: transparent;
}

.menu-button i {
  position: absolute;
  left: 15px;
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
  transition: 260ms ease;
}

.menu-button i:nth-child(1) { top: 14px; }
.menu-button i:nth-child(2) { top: 22px; }
.menu-button i:nth-child(3) { top: 30px; }
.menu-button.open i:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-button.open i:nth-child(2) { opacity: 0; }
.menu-button.open i:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: center;
  padding: 12vh 8vw 7vh;
  visibility: hidden;
  background:
    radial-gradient(circle at 8% 100%, rgba(168, 56, 255, 0.82), transparent 32%),
    radial-gradient(circle at 100% 0%, rgba(255, 111, 65, 0.56), transparent 32%),
    rgba(3, 3, 3, 0.98);
  opacity: 0;
  transform: translateY(-22px);
  transition: opacity 280ms ease, transform 360ms ease, visibility 280ms;
}

.menu-panel.open {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.menu-panel nav {
  display: grid;
}

.menu-panel nav a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--heading);
  font-size: clamp(50px, 7vw, 120px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  transition: padding 220ms ease, color 220ms ease;
}

.menu-panel nav a:hover {
  padding-left: 24px;
  color: #d45ad2;
}

.menu-panel nav small {
  width: 32px;
  font-size: 12px;
  letter-spacing: 0;
}

.menu-panel p {
  margin: 34px 0 0 auto;
  color: var(--muted);
}

/* Hero */
.hero {
  --hero-progress: 0;
  position: relative;
  height: 100svh;
  min-height: 690px;
  overflow: hidden;
  background: #050505;
}

.corner-glow {
  position: absolute;
  width: 54vw;
  height: 54vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(36px);
  opacity: calc(1 - var(--hero-progress));
}

.glow-orange {
  top: -39vw;
  right: -25vw;
  background: radial-gradient(circle, rgba(255, 92, 43, 0.92), rgba(255, 92, 43, 0.22) 33%, transparent 68%);
}

.glow-purple {
  bottom: -42vw;
  left: -21vw;
  background: radial-gradient(circle, rgba(171, 60, 255, 0.96), rgba(135, 42, 219, 0.25) 38%, transparent 68%);
}

.hero-copy {
  position: absolute;
  top: 13.5%;
  right: 3%;
  left: 3%;
  text-align: center;
  opacity: calc(1 - var(--hero-progress) * 1.55);
  transform: translateY(calc(var(--hero-progress) * -11vh));
}

.hero h1 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(74px, 9.5vw, 172px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.066em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  opacity: 0;
  animation: hero-enter 850ms cubic-bezier(0.16, 0.82, 0.24, 1) forwards;
}

.hero h1 span:nth-child(1) { transform: scaleX(0.86) translateY(60px); animation-delay: 80ms; }
.hero h1 span:nth-child(2) { margin-top: 0.08em; transform: scaleX(0.94) translateY(70px); animation-delay: 180ms; }
.hero h1 span:nth-child(3) { margin-top: 0.11em; transform: scaleX(0.92) translateY(80px); animation-delay: 290ms; }

@keyframes hero-enter {
  to { opacity: 1; transform: scaleX(0.92) translateY(0); }
}

.hero h1 .glow-text {
  color: white;
  text-shadow: 0 0 2px #fff, 0 0 7px #fff, 0 0 14px #ff675b, 0 0 27px #e64fc1, 0 0 50px #8a3aff;
}

.hero-bottom {
  position: absolute;
  right: 2.6vw;
  bottom: 22px;
  left: 2.6vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  font-size: clamp(11px, 0.92vw, 16px);
}

.hero-bottom p { margin: 0; color: rgba(255, 255, 255, 0.8); }
.hero-bottom > a {
  justify-self: end;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  font-size: 23px;
  transition: background 180ms ease;
}
.hero-bottom > a:hover { background: rgba(255, 255, 255, 0.16); }
.social-chip { width: max-content; padding: 9px 11px; border: 1px solid var(--line); background: rgba(0, 0, 0, 0.75); }

/* Story */
.story {
  --story-progress: 0;
  position: relative;
  height: 500vh;
  background:
    radial-gradient(circle at -8% 100%, rgba(169, 55, 255, 0.94), rgba(121, 35, 191, 0.2) 24%, transparent 46%),
    #050505;
}

.story-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 690px;
  overflow: hidden;
}

.story-copy {
  position: absolute;
  top: 50%;
  left: 1.35vw;
  z-index: 4;
  width: 56%;
  transform: translateY(-50%);
  transition: opacity 500ms ease, transform 650ms ease;
}

.story-copy h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(68px, 5.55vw, 106px);
  font-weight: 900;
  line-height: 0.87;
  letter-spacing: -0.064em;
  text-transform: uppercase;
}

.story-copy h2 span {
  display: block;
  opacity: 0;
  transform: translateY(70px);
  animation: story-line 700ms cubic-bezier(0.16, 0.82, 0.24, 1) forwards;
  animation-play-state: paused;
}

.story[data-stage] .story-copy h2 span { animation-play-state: running; }
.story-copy h2 span:nth-child(2) { animation-delay: 90ms; }
.story-copy h2 span:nth-child(3) { animation-delay: 180ms; white-space: nowrap; }
.story-copy h2 span:nth-child(4) { animation-delay: 270ms; }

@keyframes story-line { to { opacity: 1; transform: none; } }

.story-copy h2 b {
  display: inline-block;
  padding: 0.02em 0.12em 0.09em;
  border: 6px solid transparent;
  border-image: var(--gradient) 1;
  background: var(--gradient);
  line-height: 0.78;
}

.story-copy > em {
  display: inline-block;
  margin-top: -18px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  background: #050505;
  font-family: var(--heading);
  font-size: clamp(18px, 1.25vw, 24px);
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.story[data-stage="issues"] .story-copy {
  transform: translateX(-0.6vw) translateY(-50%) scale(0.985);
}

.pixel-hearts {
  position: absolute;
  top: 3%;
  right: 2.5%;
  z-index: 2;
  width: 38%;
  height: 91%;
  overflow: hidden;
  opacity: 1;
  transition: opacity 400ms ease;
}

.story[data-stage="issues"] .pixel-hearts { opacity: 0.08; }

.pixel-hearts i {
  position: absolute;
  bottom: -100px;
  width: var(--size, 60px);
  aspect-ratio: 1.06;
  background: var(--gradient);
  clip-path: polygon(0 19%, 12% 19%, 12% 7%, 36% 7%, 36% 14%, 50% 14%, 50% 21%, 57% 21%, 57% 14%, 64% 14%, 64% 7%, 88% 7%, 88% 14%, 100% 14%, 100% 45%, 94% 45%, 94% 56%, 82% 56%, 82% 67%, 70% 67%, 70% 78%, 58% 78%, 58% 89%, 47% 89%, 47% 100%, 36% 100%, 36% 89%, 24% 89%, 24% 78%, 12% 78%, 12% 67%, 0 67%);
  filter: drop-shadow(4px 5px 0 rgba(0, 0, 0, 0.4));
  animation: heart-float var(--duration, 4s) linear infinite;
}

.pixel-hearts .one { left: 8%; --size: 28px; --duration: 3.2s; animation-delay: -0.5s; }
.pixel-hearts .two { left: 24%; --size: 82px; --duration: 4.5s; animation-delay: -2.7s; }
.pixel-hearts .three { left: 41%; --size: 45px; --duration: 3.7s; animation-delay: -1.2s; }
.pixel-hearts .four { left: 60%; --size: 115px; --duration: 5.4s; animation-delay: -3.8s; }
.pixel-hearts .five { left: 77%; --size: 57px; --duration: 4.1s; animation-delay: -0.4s; }
.pixel-hearts .six { left: 89%; --size: 24px; --duration: 3.4s; animation-delay: -2s; }
.pixel-hearts .seven { left: 48%; --size: 31px; --duration: 3.9s; animation-delay: -3.1s; }

@keyframes heart-float {
  0% { opacity: 0; transform: translate3d(0, 80px, 0) rotate(-6deg) scale(0.4); }
  12% { opacity: 1; }
  55% { opacity: 1; transform: translate3d(24px, -46vh, 0) rotate(4deg) scale(1); }
  100% { opacity: 0; transform: translate3d(-14px, -93vh, 0) rotate(10deg) scale(0.28); }
}

.issues-window {
  position: absolute;
  top: 6.5vh;
  right: 2.15vw;
  bottom: 2vh;
  z-index: 5;
  width: 35.5vw;
  overflow: hidden;
  opacity: 0;
  transform: translateX(90px);
  transition: opacity 440ms ease, transform 560ms cubic-bezier(0.18, 0.8, 0.2, 1);
}

.story[data-stage="issues"] .issues-window { opacity: 1; transform: none; }

.issues-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: transform;
}

.issue-card {
  position: relative;
  display: grid;
  min-height: 190px;
  flex: 0 0 190px;
  grid-template-columns: 28% 72%;
  align-items: center;
  padding: 22px 21px 20px 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.95);
  opacity: 0.22;
  filter: grayscale(1);
  transition: opacity 380ms ease, filter 380ms ease, transform 380ms ease;
}

.issue-card.active { opacity: 1; filter: none; transform: translateX(-10px); }
.issue-card > small {
  position: absolute;
  top: -1px;
  left: -1px;
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px 0 7px 0;
  background: #050505;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 900;
}
.issue-card > i { justify-self: center; color: #6e676e; font-size: clamp(44px, 4vw, 72px); font-style: normal; }
.issue-card h3 {
  margin: 0;
  color: #403d40;
  font-family: var(--heading);
  font-size: clamp(27px, 2.15vw, 41px);
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.issue-card.active > i,
.issue-card.active h3 {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
}

/* Pixel transition */
.pixel-transition {
  --pixel-y: 110%;
  --blackout-opacity: 1;
  position: relative;
  z-index: 2;
  height: 590vh;
  background: transparent;
}

.transition-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 690px;
  overflow: hidden;
}

.transition-blackout {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050505;
  opacity: var(--blackout-opacity);
}

.pixel-wave {
  position: absolute;
  top: -30vh;
  right: 0;
  left: 0;
  z-index: 3;
  height: 160vh;
  background: linear-gradient(180deg, #ad43f4, #c455db 31%, #dc65b7 62%, #ff8151);
  clip-path: polygon(
    0 19%, 5% 19%, 5% 14%, 10% 14%, 10% 19%, 15% 19%, 15% 11%, 20% 11%, 20% 5%,
    25% 5%, 25% 10%, 30% 10%, 30% 2%, 35% 2%, 35% 8%, 40% 8%, 40% 4%, 45% 4%,
    45% 11%, 50% 11%, 50% 2%, 55% 2%, 55% 9%, 60% 9%, 60% 5%, 65% 5%, 65% 10%,
    70% 10%, 70% 16%, 75% 16%, 75% 20%, 80% 20%, 80% 13%, 85% 13%, 85% 19%,
    90% 19%, 90% 11%, 95% 11%, 95% 19%, 100% 19%,
    100% 84%, 95% 84%, 95% 89%, 90% 89%, 90% 83%, 85% 83%, 85% 92%, 80% 92%,
    80% 86%, 75% 86%, 75% 93%, 70% 93%, 70% 87%, 65% 87%, 65% 95%, 60% 95%,
    60% 87%, 55% 87%, 55% 92%, 50% 92%, 50% 98%, 45% 98%, 45% 90%, 40% 90%,
    40% 95%, 35% 95%, 35% 87%, 30% 87%, 30% 93%, 25% 93%, 25% 85%, 20% 85%,
    20% 91%, 15% 91%, 15% 83%, 10% 83%, 10% 89%, 5% 89%, 5% 84%, 0 84%
  );
  transform: translate3d(0, var(--pixel-y), 0);
  will-change: transform;
}

.transition-copy {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-content: center;
  padding: 8vh 5vw;
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 62vh, 0);
  pointer-events: none;
}

.transition-copy h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(65px, 5.25vw, 101px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.transition-copy p { margin: 22px 0 0; font-size: 11px; }

/* Horizontal services */
.services {
  --services-progress: 0;
  position: relative;
  z-index: 1;
  height: 440vh;
  margin-top: -100svh;
  background: linear-gradient(90deg, #ff633b 0%, #151016 12%, #080808 48%, #141015 84%, #9343e2 100%);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 2px;
  background: #3ed8e2;
  box-shadow: 0 0 15px rgba(62, 216, 226, 0.65);
}

.services-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 690px;
  overflow: hidden;
}

.services-frame {
  position: absolute;
  top: 3.4vh;
  right: 2.2vw;
  bottom: 3.4vh;
  left: 2.2vw;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #080808;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.services-track {
  display: flex;
  width: 400%;
  height: 100%;
  transform: translate3d(calc(var(--services-progress) * -75%), 0, 0);
  will-change: transform;
}

.service-slide {
  position: relative;
  display: grid;
  width: 25%;
  height: 100%;
  flex: 0 0 25%;
  grid-template-columns: 55% 45%;
  align-items: center;
  padding: 4.5vh 3.5vw 8vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 92, 45, 0.08), transparent 12%, transparent 88%, rgba(159, 65, 245, 0.08)),
    #090909;
}

.service-slide + .service-slide { border-left: 1px solid rgba(255, 255, 255, 0.08); }
.service-copy { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding-right: 2.8vw; }
.service-number {
  margin-bottom: 4.6vh;
  font-family: var(--heading);
  font-size: clamp(95px, 7vw, 145px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.08em;
}
.service-kicker { margin-bottom: 2.1vh; color: #d756a8; font-family: var(--heading); font-size: clamp(13px, 1vw, 20px); font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.service-copy h2 { margin: 0; font-family: var(--heading); font-size: clamp(48px, 4.4vw, 84px); font-weight: 900; line-height: 0.91; letter-spacing: -0.057em; text-transform: uppercase; }
.service-copy > p { max-width: 720px; margin: 4vh 0 0; color: rgba(255, 255, 255, 0.78); font-size: clamp(14px, 1.05vw, 20px); line-height: 1.35; }
.service-copy ul { display: grid; max-width: 750px; grid-template-columns: 1fr 1fr; gap: 18px 26px; margin: 4vh 0 0; padding: 0; list-style: none; }
.service-copy li { position: relative; padding-left: 29px; color: rgba(255, 255, 255, 0.86); font-size: clamp(13px, 0.95vw, 18px); line-height: 1.3; }
.service-copy li::before { content: "✦"; position: absolute; left: 0; color: #d757c9; font-size: 18px; }
.service-note { margin-top: 4.2vh; font-family: var(--heading); font-size: clamp(18px, 1.45vw, 28px); text-transform: uppercase; }
.service-visual { position: relative; display: grid; height: 100%; min-height: 0; place-items: center; }

.services-progress { position: absolute; right: 2.3vw; bottom: 2.2vh; left: 2.3vw; z-index: 10; height: 12px; overflow: hidden; border-radius: 99px; background: #202020; }
.services-progress i { display: block; width: 25%; height: 100%; border-radius: inherit; background: var(--gradient); box-shadow: 0 0 12px rgba(202, 73, 235, 0.5); transform: translateX(calc(var(--services-progress) * 300%)); }
.slide-count { position: absolute; right: 3vw; top: 2.2vh; z-index: 8; display: flex; gap: 8px; }
.slide-count span { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--line); color: rgba(255,255,255,.28); font-size: 9px; }
.services[data-slide="0"] .slide-count span:nth-child(1), .services[data-slide="1"] .slide-count span:nth-child(2), .services[data-slide="2"] .slide-count span:nth-child(3), .services[data-slide="3"] .slide-count span:nth-child(4) { border-color: #d75acb; color: white; }

/* Product mockups */
.phone {
  position: relative;
  width: min(72%, 390px);
  height: min(78vh, 690px);
  padding: 8px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 47px;
  background: #050505;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65), 20px 0 80px rgba(159, 61, 255, 0.1);
}
.phone-island { position: absolute; top: 15px; left: 50%; z-index: 3; width: 120px; height: 30px; border-radius: 99px; background: #040404; transform: translateX(-50%); }
.phone-screen { height: 100%; overflow: hidden; border-radius: 39px; background: linear-gradient(#1d1d20, #151519); }
.phone-status { display: flex; justify-content: space-between; padding: 28px 30px 15px; font-size: 11px; }
.phone-nav { display: flex; align-items: center; justify-content: space-between; padding: 0 23px 16px; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 11px; }
.phone-nav b { font-size: 13px; font-weight: 500; }
.phone-brand { display: flex; justify-content: center; padding: 17px 0 6px; transform: scale(.68); }
.messages { padding: 16px; }
.message { display: flex; align-items: flex-start; gap: 8px; margin-top: 12px; }
.message i { display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; border-radius: 50%; background: #3a3940; font-size: 8px; font-style: normal; }
.message p { max-width: 78%; margin: 0; padding: 12px 13px; border-radius: 14px; background: rgba(255,255,255,.11); font-size: 11px; line-height: 1.3; }
.message.outgoing { justify-content: flex-end; }
.message.outgoing p { background: var(--gradient); }
.messages time { display: block; margin: 5px 0 0 33px; color: rgba(255,255,255,.26); font-size: 8px; }
.messages time.right { margin-right: 4px; text-align: right; }

.voice-card { position: relative; display: flex; width: min(78%, 430px); height: min(70vh, 620px); flex-direction: column; align-items: center; padding: 48px 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 27px; background: linear-gradient(#252427, #1b1b1e); box-shadow: 0 30px 80px rgba(0,0,0,.55); }
.voice-orb { position: relative; width: min(22vw, 270px); aspect-ratio: 1; margin-top: 8px; border-radius: 50%; background: radial-gradient(circle at 50% 45%, #272126, #17171a 70%); box-shadow: inset 0 0 0 15px rgba(255,255,255,.02); }
.voice-orb::before { content: ""; position: absolute; inset: -10px; z-index: -1; border-radius: 50%; background: conic-gradient(from 40deg, #a03dff, transparent 24%, #ff744b, transparent 56%, #a03dff); filter: blur(16px); animation: orb-spin 7s linear infinite; }
@keyframes orb-spin { to { transform: rotate(360deg); } }
.waveform { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 4px; }
.waveform i { width: 3px; border-radius: 99px; background: var(--gradient); animation: wave 1.3s ease-in-out infinite alternate; }
.waveform i:nth-child(2n) { animation-delay: -.5s; }
.waveform i:nth-child(3n) { animation-delay: -.9s; }
@keyframes wave { to { transform: scaleY(.35); opacity: .45; } }
.voice-copy { margin-top: auto; text-align: center; }
.voice-copy b { display: block; margin-bottom: 4px; font-size: 22px; }
.voice-copy span { display: block; color: rgba(255,255,255,.33); font-size: 12px; line-height: 1.35; }
.call-button { position: absolute; bottom: -39px; display: grid; width: 78px; height: 78px; place-items: center; border-radius: 50%; background: #202023; color: #d55ec9; font-size: 31px; box-shadow: 0 18px 40px rgba(0,0,0,.55); }

.crm-card { position: relative; width: min(95%, 670px); padding: 22px 0 10px; border-radius: 25px; background: linear-gradient(#343437, #262629); box-shadow: 0 26px 70px rgba(0,0,0,.5); }
.crm-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 0 25px 18px; }
.crm-toolbar span { font-size: 19px; font-weight: 700; }
.crm-toolbar button { padding: 8px 12px; border-radius: 4px; background: var(--gradient); color: white; font-size: 10px; }
.crm-labels, .crm-person { display: grid; grid-template-columns: 52px 1fr 1.25fr .8fr; align-items: center; padding: 0 23px; }
.crm-labels { min-height: 34px; color: rgba(255,255,255,.27); font-size: 10px; }
.crm-person { min-height: 58px; border-top: 1px solid rgba(255,255,255,.075); color: rgba(255,255,255,.57); font-size: 11px; }
.crm-person .avatar { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: #7d6fff; color: white; font-size: 9px; font-style: normal; }
.crm-person .avatar-1 { background: #dfa637; } .crm-person .avatar-2 { background: #fb6978; } .crm-person .avatar-3 { background: #ff9767; } .crm-person .avatar-4 { background: #bc5eea; }
.crm-person b { color: rgba(255,255,255,.86); }
.crm-person em { width: max-content; padding: 5px 7px; border-radius: 3px; background: rgba(199,78,226,.16); color: #dc65d3; font-size: 8px; font-style: normal; }
.crm-float { position: absolute; right: -26px; bottom: -52px; display: grid; width: 240px; height: 105px; place-items: center; border-radius: 24px; background: #29292c; box-shadow: 0 25px 55px rgba(0,0,0,.45); }
.crm-float span { padding: 14px 24px; border-radius: 3px; background: var(--gradient); font-family: var(--heading); font-size: 17px; font-weight: 900; text-transform: uppercase; }

.calendar-card { width: min(98%, 700px); padding: 30px 26px 20px; border: 2px solid rgba(255,255,255,.68); border-radius: 38px; background: linear-gradient(#27272a, #1c1c1f); box-shadow: 0 25px 70px rgba(0,0,0,.5); }
.calendar-top { display: flex; align-items: center; justify-content: space-between; padding: 0 7px 15px; }
.calendar-top span { font-size: clamp(19px, 2vw, 32px); font-weight: 500; }
.calendar-top b { color: rgba(255,255,255,.4); font-size: 10px; }
.calendar-row { display: grid; min-height: 62px; grid-template-columns: 74px 1fr; align-items: center; border-top: 1px solid rgba(255,255,255,.075); }
.calendar-row time { color: rgba(255,255,255,.24); font-size: 10px; }
.calendar-row > div { padding: 10px 13px; border-radius: 10px; font-size: 11px; }
.calendar-row > div.highlight { background: var(--gradient); }
.calendar-row small { display: block; margin-top: 3px; color: rgba(255,255,255,.55); }

/* Booking board */
.booking-section { position: relative; min-height: 1120px; padding: 9vh 3vw 13vh; background: radial-gradient(circle at 4% 90%, rgba(156,54,255,.62), transparent 28%), radial-gradient(circle at 98% 80%, rgba(255,102,58,.52), transparent 26%), #060606; }
.booking-intro { display: grid; grid-template-columns: 1.2fr 1fr; align-items: end; gap: 10px 4vw; }
.booking-intro > span { grid-column: 1 / -1; color: #d95bc4; font-family: var(--heading); font-size: 14px; font-weight: 800; text-transform: uppercase; }
.booking-intro h2 { margin: 0; font-family: var(--heading); font-size: clamp(60px, 6.7vw, 126px); font-weight: 900; line-height: .84; letter-spacing: -.06em; text-transform: uppercase; }
.booking-intro p { max-width: 430px; margin: 0 0 15px; color: rgba(255,255,255,.58); font-size: clamp(14px, 1.2vw, 19px); line-height: 1.45; }
.booking-board { position: relative; margin-top: 7vh; padding: 2px; border-radius: 8px; background: var(--gradient); transform: perspective(1400px) rotateX(2deg); box-shadow: 0 40px 100px rgba(0,0,0,.55); }
.booking-browser { min-height: 570px; overflow: hidden; border-radius: 6px; background: #111113; }
.browser-top { display: flex; height: 42px; align-items: center; gap: 7px; padding: 0 15px; border-bottom: 1px solid rgba(255,255,255,.08); background: #1b1b1d; }
.browser-top i { width: 8px; height: 8px; border-radius: 50%; background: #ff725b; } .browser-top i:nth-child(2) { background: #f6bd4e; } .browser-top i:nth-child(3) { background: #55cb77; }
.browser-top span { width: min(42vw, 480px); margin-left: auto; margin-right: auto; padding: 6px 15px; border-radius: 5px; background: rgba(0,0,0,.34); color: rgba(255,255,255,.25); font-size: 9px; text-align: center; }
.booking-content { display: grid; min-height: 528px; grid-template-columns: 190px 1fr; }
.booking-sidebar { padding: 29px 20px; border-right: 1px solid rgba(255,255,255,.07); background: #101012; }
.booking-sidebar .brand { transform: rotate(-3deg) scale(.75); transform-origin: left top; }
.booking-sidebar > small { display: block; margin-top: 52px; color: rgba(255,255,255,.28); font-size: 8px; letter-spacing: .14em; }
.booking-sidebar nav { display: grid; gap: 5px; margin-top: 13px; }
.booking-sidebar nav span, .booking-sidebar nav b { padding: 10px 11px; border-radius: 5px; font-size: 10px; font-weight: 500; }
.booking-sidebar nav b { background: linear-gradient(90deg, rgba(168,61,255,.22), rgba(255,118,74,.08)); color: #e062cc; }
.booking-main { padding: 28px; }
.booking-heading { display: flex; align-items: center; justify-content: space-between; font-size: 20px; font-weight: 700; }
.booking-heading em { padding: 5px 8px; border-radius: 3px; background: rgba(55,216,134,.12); color: #58d494; font-size: 8px; font-style: normal; letter-spacing: .12em; }
.booking-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.booking-stats > div { padding: 15px; border: 1px solid rgba(255,255,255,.08); border-radius: 7px; background: #18181b; }
.booking-stats small { display: block; color: rgba(255,255,255,.32); font-size: 9px; }.booking-stats b { display: block; margin-top: 6px; font-size: 21px; }
.booking-chat { display: grid; min-height: 300px; grid-template-columns: 31% 69%; margin-top: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.07); border-radius: 7px; }
.chat-list { display: grid; align-content: start; border-right: 1px solid rgba(255,255,255,.07); background: #141417; }
.chat-list > b { padding: 15px; font-size: 11px; }
.chat-list > span { display: grid; min-height: 57px; grid-template-columns: 30px 1fr auto; align-items: center; gap: 8px; padding: 0 12px; color: rgba(255,255,255,.58); font-size: 10px; }
.chat-list > span.selected { background: rgba(182,72,246,.12); color: white; }
.chat-list > span i { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; background: var(--gradient); font-style: normal; }
.chat-list > span small { color: rgba(255,255,255,.22); }
.chat-window { padding: 16px; background: #19191c; }
.chat-window > b { display: block; padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 12px; }
.chat-window p { width: 62%; margin: 22px 0 0; padding: 12px 14px; border-radius: 13px 13px 13px 3px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.74); font-size: 10px; line-height: 1.35; }
.chat-window p.ai-answer { margin-left: auto; border-radius: 13px 13px 3px 13px; background: var(--gradient); color: white; }
.typing { display: flex; width: max-content; gap: 4px; margin: 15px 0 0 auto; padding: 9px 13px; border-radius: 99px; background: rgba(255,255,255,.06); }
.typing i { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.45); animation: typing 800ms ease-in-out infinite alternate; }
.typing i:nth-child(2) { animation-delay: 200ms; }.typing i:nth-child(3) { animation-delay: 400ms; }
@keyframes typing { to { opacity: .2; transform: translateY(-2px); } }
.board-progress { height: 8px; padding: 2px; background: #202023; }.board-progress i { display: block; width: 71%; height: 100%; border-radius: 99px; background: var(--gradient); box-shadow: 0 0 14px rgba(188,71,242,.55); }

/* Marquees */
.marquees { position: relative; overflow: hidden; background: #070707; }
.marquee { display: flex; height: 72px; align-items: center; overflow: hidden; border-top: 1px solid rgba(255,255,255,.15); font-family: var(--heading); font-size: clamp(19px, 1.9vw, 34px); font-weight: 900; text-transform: uppercase; white-space: nowrap; }
.marquee > div { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee span { display: inline-block; }
.marquee b { margin: 0 36px; font-size: .7em; }
.marquee.purple { background: linear-gradient(90deg, #a73fff, #df57bc); }.marquee.purple > div { animation-direction: reverse; }
.marquee.orange { background: linear-gradient(90deg, #ff613d, #ff8a50); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Pricing */
.pricing { position: relative; padding: 13vh 3vw 14vh; background: radial-gradient(circle at 0 60%, rgba(255,90,43,.46), transparent 25%), radial-gradient(circle at 100% 45%, rgba(154,55,249,.52), transparent 26%), #050505; }
.pricing-heading { display: flex; align-items: start; justify-content: space-between; gap: 30px; }
.pricing-heading > span { margin-top: 12px; color: rgba(255,255,255,.48); font-size: 12px; text-transform: uppercase; }
.pricing-heading h2 { margin: 0; font-family: var(--heading); font-size: clamp(69px, 8vw, 150px); font-weight: 900; line-height: .82; letter-spacing: -.06em; text-align: right; text-transform: uppercase; }
.pricing-scroll { margin-top: 9vh; }
.pricing-table { display: grid; min-width: 980px; grid-template-columns: 1.05fr repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: rgba(5,5,5,.9); box-shadow: 0 25px 80px rgba(0,0,0,.46); }
.pricing-side-head, .plan-head, .feature-name, .feature-value { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pricing-side-head { display: flex; align-items: end; padding: 28px; color: rgba(255,255,255,.35); font-size: 12px; line-height: 1.45; text-transform: uppercase; }
.plan-head { min-height: 250px; padding: 28px; background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); }
.plan-head h3 { min-height: 88px; margin: 0; font-family: var(--heading); font-size: clamp(30px, 2.6vw, 48px); font-weight: 900; line-height: .9; text-transform: uppercase; }
.plan-head p { margin: 14px 0 26px; color: rgba(255,255,255,.45); font-size: 10px; text-transform: uppercase; }
.plan-head .gradient-button { font-size: 11px; }.plan-head .gradient-button span { padding: 0 13px; }
.feature-name { display: flex; min-height: 74px; align-items: center; padding: 0 28px; color: rgba(255,255,255,.72); font-size: 12px; }
.feature-value { display: grid; min-height: 74px; place-items: center; background: rgba(255,255,255,.015); }
.feature-value i { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; font-size: 11px; font-style: normal; }
.feature-value .yes { background: var(--gradient); box-shadow: 0 0 18px rgba(200,76,224,.24); }.feature-value .no { background: rgba(255,255,255,.07); color: rgba(255,255,255,.3); }
.feature-value b { color: rgba(255,255,255,.68); font-size: 10px; text-transform: uppercase; }

/* CTA */
.final-cta { position: relative; display: grid; min-height: 100svh; place-items: center; overflow: hidden; background: #050505; }
.cta-glow { position: absolute; width: 48vw; aspect-ratio: 1; border-radius: 50%; filter: blur(25px); opacity: .92; }
.purple-glow { right: -25vw; bottom: -31vw; background: radial-gradient(circle, rgba(155,54,255,.96), rgba(155,54,255,.18) 42%, transparent 68%); }.orange-glow { bottom: -34vw; left: -27vw; background: radial-gradient(circle, rgba(255,91,43,.8), rgba(255,91,43,.16) 42%, transparent 68%); }
.cta-inner { position: relative; z-index: 2; max-width: 1100px; padding: 10vh 22px; text-align: center; }
.cta-inner > span { color: #d858c6; font-family: var(--heading); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.cta-inner h2 { margin: 30px 0 34px; font-family: var(--heading); font-size: clamp(78px, 9vw, 165px); font-weight: 900; line-height: .82; letter-spacing: -.064em; text-transform: uppercase; }
.cta-inner h3 { margin: 0; font-family: var(--heading); font-size: clamp(24px, 2.4vw, 42px); text-transform: uppercase; }
.cta-inner p { max-width: 480px; margin: 35px auto; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.5; }
.cta-inner .gradient-button { min-width: 270px; min-height: 64px; border-radius: 99px; font-size: 19px; }.cta-inner .gradient-button span { width: 100%; min-height: 60px; border-radius: 99px; }

/* FAQ */
.faq { position: relative; display: grid; min-height: 100vh; grid-template-columns: 34% 66%; align-items: start; padding: 12vh 3vw; background: radial-gradient(circle at 100% 100%, rgba(156,54,255,.48), transparent 30%), radial-gradient(circle at 20% 100%, rgba(255,102,55,.36), transparent 27%), #050505; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading > span { color: #d65bca; font-family: var(--heading); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.faq-heading h2 { margin: 28px 0 0; font-family: var(--heading); font-size: clamp(78px, 8.5vw, 150px); font-weight: 900; line-height: .8; letter-spacing: -.06em; text-transform: uppercase; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list article { border-bottom: 1px solid var(--line); }
.faq-list button { display: grid; width: 100%; min-height: 82px; grid-template-columns: 50px 1fr 40px; align-items: center; padding: 0 9px; cursor: pointer; background: transparent; text-align: left; transition: background 180ms ease; }
.faq-list button:hover { background: rgba(255,255,255,.035); }
.faq-list button small { color: rgba(255,255,255,.34); font-size: 9px; }
.faq-list button span { font-size: clamp(14px, 1.1vw, 19px); }
.faq-list button i { justify-self: center; font-size: 22px; font-style: normal; transition: transform 260ms ease; }
.faq-list article.open button i { transform: rotate(180deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 320ms ease; }
.faq-answer p { max-width: 700px; min-height: 0; margin: 0; overflow: hidden; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.55; }
.faq-list article.open .faq-answer { grid-template-rows: 1fr; }.faq-list article.open .faq-answer p { padding: 0 60px 28px; }

/* Footer */
.footer { padding: 22px 3vw 18px; background: #050505; }
.footer-newsletter { display: grid; min-height: 190px; grid-template-columns: 34% 66%; align-items: center; padding: 32px; border: 1px solid var(--line); border-radius: 4px; background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); }
.footer-newsletter > div > span { color: rgba(255,255,255,.55); font-size: 11px; }
.footer-newsletter form { display: grid; grid-template-columns: 1fr 1fr 50px; gap: 20px; margin-top: 18px; }
.footer-newsletter input { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); outline: 0; background: transparent; color: white; }
.footer-newsletter input:focus { border-bottom-color: #d95dc8; }
.footer-newsletter button { cursor: pointer; background: transparent; color: #d95dc8; font-size: 25px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1.4fr 1.5fr 1fr; margin-top: 16px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.footer-grid > div { display: grid; align-content: start; min-height: 150px; gap: 9px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.footer-grid small { margin-bottom: 10px; color: rgba(255,255,255,.3); font-size: 8px; text-transform: uppercase; }.footer-grid a { color: rgba(255,255,255,.78); font-size: 11px; }.footer-grid a:hover { color: #dc61cb; }
.footer-button { place-content: center; }.footer-button .gradient-button { width: 100%; }
.footer-base { display: flex; justify-content: space-between; padding: 18px 3px 0; color: rgba(255,255,255,.28); font-size: 8px; text-transform: uppercase; }

@media (max-width: 980px) {
  .grid-surface::before { background-size: 86px 86px; }
  .site-header { top: 16px; right: 16px; left: 16px; }
  .header-actions { height: 46px; }.header-actions .gradient-button { min-height: 38px; font-size: 11px; }.header-actions .gradient-button span { min-height: 34px; padding: 0 11px; }.menu-button { width: 45px; }.menu-button i { left: 11px; width: 24px; }.menu-button i:nth-child(1) { top: 12px; }.menu-button i:nth-child(2) { top: 19px; }.menu-button i:nth-child(3) { top: 26px; }.menu-button.open i:nth-child(1), .menu-button.open i:nth-child(3) { top: 19px; }
  .hero { min-height: 620px; }.hero-copy { top: 24%; }.hero h1 { font-size: clamp(52px, 12.8vw, 112px); }.hero h1 span:nth-child(2), .hero h1 span:nth-child(3) { margin-top: .15em; }.hero-bottom { grid-template-columns: 1fr auto; }.hero-bottom p { grid-row: 1; grid-column: 1 / -1; margin: 0 auto 20px; text-align: center; }.corner-glow { width: 90vw; height: 90vw; }.glow-orange { top: -48vw; right: -49vw; }.glow-purple { bottom: -48vw; left: -45vw; }
  .story { height: 560vh; }.story-copy { top: 12vh; width: 94%; }.story-copy h2 { font-size: clamp(55px, 11.8vw, 92px); }.pixel-hearts { top: 44%; width: 52%; height: 50%; }.issues-window { top: 50%; right: 4%; bottom: 2%; width: 92%; }.issue-card { min-height: 165px; flex-basis: 165px; }.issue-card h3 { font-size: clamp(28px, 6.6vw, 48px); }.story[data-stage="issues"] .story-copy { opacity: .54; transform: translateY(-6vh) scale(.92); transform-origin: left top; }
  .pixel-transition { height: 520vh; }
  .transition-copy h2 { font-size: clamp(66px, 15vw, 125px); }
  .services { height: 500vh; }.services-frame { top: 18px; right: 12px; bottom: 18px; left: 12px; }.service-slide { grid-template-columns: 1fr; align-content: start; padding: 55px 22px 60px; overflow-y: auto; }.service-copy { align-self: auto; padding: 0; }.service-number { margin-bottom: 24px; font-size: 78px; }.service-copy h2 { font-size: clamp(40px, 10vw, 70px); }.service-copy > p { margin-top: 24px; font-size: 14px; }.service-copy ul { grid-template-columns: 1fr; margin-top: 25px; }.service-note { margin-top: 22px; }.service-visual { min-height: 460px; margin-top: 28px; }.phone { width: min(78%, 330px); height: 570px; }.voice-card { width: min(82%, 360px); height: 520px; }.voice-orb { width: 210px; }.crm-card { width: 94%; }.calendar-card { width: 95%; }.slide-count { display: none; }
  .booking-section { min-height: 900px; }.booking-intro { grid-template-columns: 1fr; }.booking-intro h2 { font-size: clamp(53px, 12.5vw, 90px); }.booking-intro p { margin-top: 24px; }.booking-content { grid-template-columns: 1fr; }.booking-sidebar { display: none; }.booking-browser { min-height: 520px; }.booking-main { padding: 18px; }.booking-chat { grid-template-columns: 38% 62%; }.booking-board { transform: none; }
  .pricing-heading { display: block; }.pricing-heading h2 { margin-top: 25px; text-align: left; }.pricing-scroll { overflow-x: auto; padding-bottom: 12px; scrollbar-color: #b547f0 #222; }.pricing-table { min-width: 940px; }
  .faq { grid-template-columns: 1fr; }.faq-heading { position: relative; top: auto; margin-bottom: 55px; }.faq-list button { min-height: 72px; }
  .footer-newsletter { grid-template-columns: 1fr; gap: 40px; }.footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid > div { min-height: 130px; }.footer-grid .footer-button { grid-column: 1 / -1; }.footer-base { gap: 12px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .brand { font-size: 24px; }
  .header-actions .gradient-button { display: none; }
  .menu-panel { padding: 14vh 22px 6vh; }.menu-panel nav a { gap: 11px; font-size: 14vw; }.menu-panel nav small { width: 20px; }
  .hero { min-height: 600px; }.hero-copy { top: 28%; right: 12px; left: 12px; }.hero h1 { font-size: 14vw; line-height: .9; }.hero h1 span:nth-child(1) { font-size: 1.2em; }.hero-bottom { right: 14px; bottom: 15px; left: 14px; }.hero-bottom p { max-width: 230px; font-size: 10px; }
  .story-copy { top: 15vh; }.story-copy h2 { font-size: 12.6vw; line-height: .91; }.story-copy h2 b { border-width: 3px; }.story-copy > em { margin-top: 14px; font-size: 12px; }.issue-card { grid-template-columns: 23% 77%; padding: 20px 12px; }.issue-card > i { font-size: 38px; }.issue-card h3 { font-size: 7.4vw; }
  .pixel-transition { height: 480vh; }.transition-copy h2 { font-size: 17vw; }
  .services-frame { right: 7px; left: 7px; }.service-slide { padding-right: 16px; padding-left: 16px; }.service-number { font-size: 64px; }.service-copy h2 { font-size: 11vw; }.service-visual { min-height: 390px; }.phone { width: 260px; height: 500px; }.voice-card { width: 280px; height: 440px; }.voice-orb { width: 170px; }.crm-labels, .crm-person { grid-template-columns: 40px 1fr .7fr; }.crm-labels span:nth-child(3), .crm-person span { display: none; }.crm-float { right: -8px; width: 180px; }.calendar-card { padding: 24px 16px 15px; }.calendar-row { grid-template-columns: 59px 1fr; }
  .booking-section { min-height: 780px; padding-right: 14px; padding-left: 14px; }.booking-browser { min-height: 440px; }.booking-main { padding: 12px; }.booking-stats { gap: 6px; }.booking-stats > div { padding: 10px 7px; }.booking-stats b { font-size: 17px; }.booking-chat { grid-template-columns: 1fr; min-height: 270px; }.chat-list { display: none; }.chat-window p { width: 82%; }.marquee { height: 60px; }
  .pricing, .faq { padding-right: 16px; padding-left: 16px; }.pricing-heading h2 { font-size: 15vw; }.pricing-table { min-width: 860px; }
  .cta-inner h2 { font-size: 16vw; }.cta-inner h3 { font-size: 5.8vw; }.cta-inner .gradient-button { min-width: 240px; }
  .faq-heading h2 { font-size: 20vw; }.faq-list button { grid-template-columns: 32px 1fr 28px; }.faq-list button span { padding-right: 9px; }.faq-list article.open .faq-answer p { padding: 0 38px 24px; }
  .footer { padding-right: 12px; padding-left: 12px; }.footer-newsletter { padding: 25px 18px; }.footer-newsletter form { grid-template-columns: 1fr 40px; }.footer-newsletter form label:nth-child(1) { display: none; }.footer-grid { grid-template-columns: 1fr; }.footer-grid .footer-button { grid-column: auto; }.footer-base span:nth-child(2) { display: none; }
}

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

