:root {
  --ink: #080912;
  --paper: #fffdf8;
  --muted: #666a7a;
  --line: rgba(8, 9, 18, 0.12);
  --electric: #1727ff;
  --cyan: #20e6ff;
  --pink: #ff4fa6;
  --orange: #ff8a1f;
  --lime: #d8ff3e;
  --violet: #5b37ff;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(10, 14, 38, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(32, 230, 255, 0.26), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(255, 79, 166, 0.18), transparent 34rem),
    linear-gradient(180deg, #fffdf8, #f5fbff 42%, #fff8fd);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(rgba(8, 9, 18, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 9, 18, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  z-index: 60;
  inset: 0 auto auto 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--electric), var(--pink), var(--orange));
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: white;
  background: rgba(7, 9, 18, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 950;
}

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

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
  font-weight: 850;
}

.site-header nav a {
  text-decoration: none;
  opacity: 0.84;
}

.site-header nav a:hover {
  color: var(--cyan);
  opacity: 1;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(40px, 7vw, 86px) clamp(18px, 5vw, 72px);
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(8, 9, 18, 0.92) 0 42%, rgba(8, 9, 18, 0.54) 66%, rgba(8, 9, 18, 0.16)),
    linear-gradient(135deg, #07111e, #1110ff 44%, #ff3b90 100%);
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -12% auto;
  width: 52vw;
  height: 52vw;
  background: conic-gradient(from 140deg, var(--cyan), var(--lime), var(--orange), var(--pink), var(--cyan));
  filter: blur(34px);
  opacity: 0.42;
  border-radius: 50%;
  animation: breathe 9s ease-in-out infinite alternate;
  z-index: -1;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 950;
  color: var(--electric);
}

.hero .eyebrow {
  color: var(--lime);
}

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

h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.2rem;
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.75rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow),
.intro > p,
.spotlight-copy > p,
.contact-copy > p {
  max-width: 620px;
  font-size: 1.12rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.hero-stage {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(64vw, 880px);
  z-index: 1;
  perspective: 1200px;
  pointer-events: none;
}

.hero-phone {
  position: absolute;
  width: clamp(150px, 18vw, 235px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 7px solid #080912;
  border-radius: 30px;
  background: #10131f;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.hero-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-phone.p1 {
  right: 26%;
  top: 9%;
  transform: rotate(-10deg);
  animation: floatOne 7s ease-in-out infinite;
}

.hero-phone.p2 {
  right: 8%;
  top: 23%;
  transform: rotate(9deg);
  animation: floatTwo 8s ease-in-out infinite;
}

.hero-phone.p3 {
  right: 31%;
  bottom: 2%;
  transform: rotate(6deg);
  animation: floatThree 7.5s ease-in-out infinite;
}

.hero-strip,
.motion-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
}

.hero-strip {
  display: flex;
  gap: 28px;
  padding: 14px clamp(18px, 5vw, 72px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.76);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #07070c;
  background: linear-gradient(135deg, #fff16c, var(--orange), #ff4c1f);
  box-shadow: 0 12px 28px rgba(255, 121, 38, 0.28);
}

.button.secondary,
.button.ghost {
  color: inherit;
  border-color: rgba(8, 9, 18, 0.18);
  background: rgba(255, 255, 255, 0.5);
}

.hero .button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.hero-actions,
.contact-actions,
.modal-actions,
.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 28px;
}

.motion-strip {
  position: relative;
  bottom: auto;
  padding: 16px 0;
  color: var(--paper);
  background: #080912;
}

.motion-strip div {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: marquee 26s linear infinite;
}

.motion-strip span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  white-space: nowrap;
}

.showreel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  overflow: hidden;
  padding: clamp(52px, 7vw, 94px) clamp(18px, 5vw, 72px);
  color: white;
  background:
    radial-gradient(circle at 80% 18%, rgba(216, 255, 62, 0.22), transparent 20rem),
    linear-gradient(135deg, #1114a6, #080912 58%, #181d2f);
}

.showreel-copy p:not(.section-kicker) {
  max-width: 560px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}

.showreel .section-kicker {
  color: var(--lime);
}

.reel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 20px 0;
  transform: rotate(-4deg);
  animation: reelSlide 18s ease-in-out infinite alternate;
}

.reel-phone {
  width: clamp(116px, 13vw, 190px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  flex: 0 0 auto;
  border: 6px solid #080912;
  border-radius: 24px;
  background: #090b12;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  transition: transform 220ms ease;
}

.reel-phone:nth-child(even) {
  transform: translateY(28px);
}

.reel-phone:hover {
  transform: translateY(-12px) scale(1.08);
}

.reel-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.build-orbit-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(26px, 5vw, 78px);
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 70% 50%, rgba(32, 230, 255, 0.14), transparent 24rem),
    linear-gradient(135deg, #080912, #10162a);
}

.orbit-copy .section-kicker {
  color: var(--cyan);
}

.orbit-copy p:not(.section-kicker) {
  max-width: 560px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}

.orbit-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.build-orbit {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(32, 230, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 230, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(23, 39, 255, 0.42), transparent 19rem),
    rgba(255, 255, 255, 0.04);
  background-size: 42px 42px, 42px 42px, auto, auto;
  perspective: 1200px;
  cursor: grab;
  touch-action: pan-y;
}

.build-orbit:active {
  cursor: grabbing;
}

.build-orbit:focus-visible {
  outline-offset: -5px;
}

.build-orbit::before {
  content: "";
  position: absolute;
  width: min(65%, 440px);
  aspect-ratio: 1;
  border: 1px solid rgba(32, 230, 255, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(32, 230, 255, 0.08);
}

.build-orbit > p {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
}

.orbit-ring {
  position: relative;
  width: 1px;
  height: 1px;
  transform-style: preserve-3d;
  transition: transform 260ms ease-out;
}

.build-orbit.is-dragging .orbit-ring,
.build-orbit.is-dragging .orbit-card {
  transition: none;
}

.orbit-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132px;
  aspect-ratio: 9 / 16;
  padding: 0;
  overflow: hidden;
  border: 5px solid #080912;
  border-radius: 22px;
  color: white;
  background: #080912;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transform:
    translate(-50%, -50%)
    rotateY(var(--angle))
    translateZ(var(--radius))
    rotateY(var(--face-angle))
    scale(var(--card-scale, 1));
  backface-visibility: hidden;
  transition: transform 260ms ease-out, box-shadow 200ms ease, filter 200ms ease, opacity 200ms ease;
}

.orbit-card:hover {
  box-shadow: 0 28px 80px rgba(32, 230, 255, 0.32);
  filter: saturate(1.18);
}

.orbit-card.is-front {
  z-index: 4;
  box-shadow: 0 30px 86px rgba(32, 230, 255, 0.34), 0 0 0 1px rgba(32, 230, 255, 0.42);
  filter: saturate(1.12);
}

.orbit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.orbit-card span {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  color: white;
  background: rgba(8, 9, 18, 0.72);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 950;
  text-align: center;
}

.section-pad {
  padding: clamp(54px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

.reveal-ready main > section:not(.hero) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-ready main > section.is-revealed {
  opacity: 1;
  transform: none;
}

.intro,
.process,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: start;
}

.intro > p,
.process span,
.contact-copy > p {
  color: var(--muted);
}

.standards {
  background: #080912;
  color: white;
}

.standards .section-kicker {
  color: var(--cyan);
}

.standards-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.standards-grid article,
.package-grid article {
  min-height: 220px;
  padding: 26px;
  background: #10121e;
}

.standards-grid span,
.package-grid span,
.work-index {
  display: block;
  color: var(--electric);
  font-weight: 1000;
}

.standards-grid strong {
  display: block;
  margin: 18px 0 10px;
  font-size: 1.12rem;
}

.standards-grid p,
.package-grid p {
  margin: 0;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}

#work,
#packages,
#contact {
  scroll-margin-top: 82px;
}

.portfolio {
  padding-top: clamp(48px, 6vw, 78px);
}

.portfolio-layout {
  display: grid;
  grid-template-columns: minmax(315px, 430px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.portfolio-list {
  display: grid;
  gap: 10px;
  position: sticky;
  top: 92px;
}

.work-row {
  display: grid;
  grid-template-columns: 74px 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 96px;
  padding: 10px 14px 10px 10px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 36px rgba(8, 9, 18, 0.06);
  cursor: pointer;
  transition: transform 180ms ease, border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.work-row:hover,
.work-row.is-active {
  transform: translateX(8px);
  border-color: rgba(23, 39, 255, 0.46);
  background: white;
  box-shadow: 0 18px 44px rgba(23, 39, 255, 0.12);
}

.work-copy strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.05;
}

.work-copy small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-weight: 760;
  line-height: 1.2;
}

.phone-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 6px solid #080912;
  border-radius: 25px;
  background: #090b12;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
  transform-style: preserve-3d;
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.28), transparent 28%, transparent 70%, rgba(255, 255, 255, 0.16));
  opacity: 0.45;
  pointer-events: none;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 9px;
  left: 50%;
  width: 48px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
}

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

.mini-phone {
  width: 68px;
  border-width: 4px;
  border-radius: 15px;
  box-shadow: none;
}

.work-row:hover .mini-phone,
.work-row.is-active .mini-phone {
  transform: scale(1.1) rotate(-2deg);
}

.spotlight {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(235px, 0.75fr) minmax(330px, 1fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  overflow: hidden;
  padding: clamp(26px, 4.2vw, 52px);
  color: white;
  background:
    radial-gradient(circle at 22% 16%, rgba(32, 230, 255, 0.32), transparent 20rem),
    linear-gradient(135deg, #080912, #1620b9 45%, #f15a9b);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.spotlight-visual {
  display: grid;
  place-items: center;
}

.hero-phone-preview {
  width: min(280px, 29vw);
  min-width: 220px;
}

.spotlight-copy .section-kicker {
  color: var(--cyan);
}

.spotlight-copy {
  min-width: 0;
}

.spotlight-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  overflow-wrap: break-word;
}

.spotlight-copy ul,
.modal-body ul {
  display: grid;
  gap: 9px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.spotlight-copy li,
.modal-body li {
  position: relative;
  padding-left: 18px;
  font-weight: 850;
  color: rgba(255, 255, 255, 0.82);
}

.spotlight-copy li::before,
.modal-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--line);
  border-color: var(--line);
}

.package-grid article {
  background: white;
}

.package-grid h3 {
  margin: 34px 0 12px;
  font-size: 1.65rem;
}

.package-grid p {
  color: var(--muted);
}

.process-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 22px;
  background: white;
}

.contact {
  color: white;
  background:
    linear-gradient(135deg, rgba(8, 9, 18, 0.9), rgba(14, 20, 46, 0.78)),
    linear-gradient(135deg, #1710ff, #ff4fa6);
}

.contact .section-kicker {
  color: var(--lime);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: white;
  background: rgba(0, 0, 0, 0.18);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(4, 5, 12, 0.76);
  backdrop-filter: blur(12px);
}

.modal.is-open {
  display: grid;
}

.modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 360px) minmax(300px, 560px);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  width: min(100%, 1040px);
  max-height: calc(100svh - 48px);
  overflow: auto;
  padding: clamp(24px, 4vw, 48px);
  color: white;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #080912, #1820ba 45%, #de4f94);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
}

.modal-phone {
  display: grid;
  place-items: center;
}

.modal-phone img {
  width: min(310px, 72vw);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  border: 7px solid #080912;
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.modal-body h2 {
  font-size: 4rem;
}

.modal-body p {
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.copyright-note {
  font-size: 0.9rem;
}

.icon-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.7);
  background: #080912;
}

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

.site-footer p {
  margin: 0;
  max-width: 540px;
}

.sticky-cta {
  position: fixed;
  z-index: 45;
  right: 16px;
  bottom: 16px;
  width: min(316px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 4px;
  overflow: hidden;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  background: rgba(8, 9, 18, 0.88);
  backdrop-filter: blur(20px) saturate(1.35);
  box-shadow: 0 18px 55px rgba(8, 9, 18, 0.3), 0 0 0 1px rgba(32, 230, 255, 0.06) inset;
  isolation: isolate;
  animation: dockArrival 700ms cubic-bezier(0.2, 0.8, 0.25, 1) both;
}

.sticky-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -90%;
  left: -35%;
  width: 26%;
  height: 280%;
  background: linear-gradient(90deg, transparent, rgba(32, 230, 255, 0.2), transparent);
  transform: rotate(18deg);
  animation: dockSweep 5.4s ease-in-out infinite;
}

.sticky-cta a {
  position: relative;
  display: grid;
  align-content: center;
  gap: 1px;
  min-width: 0;
  min-height: 48px;
  padding: 6px 11px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.sticky-cta a:hover {
  transform: translateY(-2px);
}

.sticky-cta a span {
  font-size: 0.64rem;
  line-height: 1.1;
  letter-spacing: 0;
  opacity: 0.7;
}

.sticky-cta a strong {
  overflow: hidden;
  font-size: 0.84rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dock-build {
  color: #080912;
  background: linear-gradient(135deg, #fff16c, var(--orange) 58%, #ff4f32);
  box-shadow: 0 9px 24px rgba(255, 122, 31, 0.2);
}

.dock-whatsapp {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.dock-whatsapp:hover {
  background: rgba(255, 255, 255, 0.14);
}

.dock-whatsapp span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dock-whatsapp i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #39ef7d;
  box-shadow: 0 0 0 0 rgba(57, 239, 125, 0.5);
  animation: statusPulse 2.2s ease-out infinite;
}

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

@keyframes breathe {
  to {
    transform: scale(1.08) rotate(22deg);
  }
}

@keyframes floatOne {
  50% {
    transform: translateY(-18px) rotate(-7deg);
  }
}

@keyframes floatTwo {
  50% {
    transform: translateY(16px) rotate(12deg);
  }
}

@keyframes floatThree {
  50% {
    transform: translateY(-13px) rotate(2deg);
  }
}

@keyframes reelSlide {
  to {
    transform: translateX(clamp(-260px, -24vw, -120px)) rotate(3deg);
  }
}

@keyframes dockArrival {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }
}

@keyframes dockSweep {
  0%,
  58% {
    transform: translateX(0) rotate(18deg);
  }
  82%,
  100% {
    transform: translateX(520px) rotate(18deg);
  }
}

@keyframes statusPulse {
  70% {
    box-shadow: 0 0 0 8px rgba(57, 239, 125, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 239, 125, 0);
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 64px;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
    padding-bottom: 122px;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2,
  .spotlight-copy h3,
  .modal-body h2 {
    font-size: 3.25rem;
  }

  .hero-stage {
    opacity: 0.34;
    width: 100%;
  }

  .intro,
  .process,
  .contact,
  .showreel,
  .build-orbit-section,
  .portfolio-layout,
  .spotlight,
  .modal-panel {
    grid-template-columns: 1fr;
  }

  .standards-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-list {
    position: relative;
    top: auto;
  }

  .hero-phone-preview {
    width: min(280px, 70vw);
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 82px;
  }

  .site-header nav {
    display: none;
  }

  .site-header {
    min-height: 58px;
    padding-block: 9px;
  }

  .brand span {
    max-width: 190px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    max-width: 310px;
    font-size: 2.62rem;
    line-height: 0.96;
  }

  h2,
  .spotlight-copy h3,
  .modal-body h2 {
    font-size: 2.35rem;
    line-height: 0.98;
  }

  h3 {
    font-size: 1.55rem;
  }

  .hero-copy > p:not(.eyebrow),
  .intro > p,
  .spotlight-copy > p,
  .contact-copy > p {
    font-size: 0.98rem;
  }

  .hero {
    min-height: calc(100svh - 120px);
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .hero-stage {
    opacity: 0.25;
    transform: translateX(34%);
  }

  .hero-phone.p3 {
    display: none;
  }

  .hero-strip {
    display: none;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    flex: 1 1 100%;
  }

  .motion-strip {
    display: none;
  }

  .showreel h2 {
    max-width: 330px;
  }

  .section-pad,
  .showreel {
    padding-block: 54px;
  }

  .hero-strip {
    overflow-x: auto;
  }

  .standards-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
    margin-bottom: 24px;
  }

  .section-heading h2 {
    max-width: 340px;
  }

  .portfolio {
    padding-top: 88px;
  }

  .portfolio-list {
    display: flex;
    gap: 10px;
    margin-inline: -18px;
    padding: 2px 18px 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .portfolio-list::-webkit-scrollbar {
    display: none;
  }

  .work-row {
    grid-template-columns: 64px 34px minmax(0, 1fr);
    flex: 0 0 min(82vw, 310px);
    min-height: 88px;
    padding: 9px;
    scroll-snap-align: center;
  }

  .work-row:hover,
  .work-row.is-active {
    transform: translateY(-3px);
  }

  .mini-phone {
    width: 58px;
  }

  .spotlight {
    min-height: 0;
    padding: 24px 18px 28px;
  }

  .hero-phone-preview {
    width: min(190px, 58vw);
    min-width: 0;
  }

  .build-orbit {
    min-height: 400px;
    margin-inline: -8px;
  }

  .orbit-card {
    width: 98px;
  }

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

  .site-footer {
    flex-direction: column;
  }

  .sticky-cta {
    position: fixed;
    inset: auto auto 10px 12px;
    width: calc(100% - 24px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 4px;
    border-radius: 14px;
    background: rgba(8, 9, 18, 0.92);
  }

  .sticky-cta a {
    min-height: 48px;
    padding: 6px 10px;
  }

  .sticky-cta a span {
    font-size: 0.6rem;
  }

  .sticky-cta a strong {
    font-size: 0.82rem;
  }

  .modal {
    padding: 10px;
  }

  .modal-panel {
    gap: 18px;
    max-height: calc(100svh - 20px);
    padding: 52px 18px 24px;
  }

  .modal-phone img {
    width: min(190px, 54vw);
  }

  .modal-actions .button {
    flex: 1 1 140px;
  }
}

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