:root {
  --ink: #07111c;
  --ink-2: #0c1724;
  --panel: rgba(10, 18, 28, 0.78);
  --panel-strong: rgba(10, 18, 28, 0.94);
  --line: rgba(216, 176, 85, 0.28);
  --gold: #d7ad4c;
  --gold-2: #f3d486;
  --white: #f8fbff;
  --muted: #aeb8c6;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
}

* {
  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(--white);
  background:
    radial-gradient(circle at 16% 12%, rgba(215, 173, 76, 0.16), transparent 28rem),
    radial-gradient(circle at 85% 20%, rgba(48, 88, 130, 0.3), transparent 30rem),
    linear-gradient(135deg, #05090e 0%, #0c1724 42%, #030609 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 4% 34%, rgba(215, 173, 76, 0.16), transparent 12rem),
    radial-gradient(circle at 94% 54%, rgba(215, 173, 76, 0.12), transparent 14rem),
    linear-gradient(90deg, rgba(215, 173, 76, 0.035), transparent 18%, transparent 82%, rgba(215, 173, 76, 0.04));
  z-index: -2;
}

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

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

.starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  opacity: 0.7;
}

.cursor-glow {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(215, 173, 76, 0.18), transparent 65%);
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: opacity 0.25s ease;
}

.meteor-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.meteor-layer span {
  position: absolute;
  top: -12%;
  left: 18%;
  width: 190px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(243, 212, 134, 0.98), transparent);
  filter: drop-shadow(0 0 10px rgba(243, 212, 134, 0.8));
  opacity: 0;
  transform: rotate(-28deg);
  animation: meteor 7.5s linear infinite;
}

.meteor-layer span:nth-child(2) {
  left: 62%;
  animation-delay: 2.4s;
  animation-duration: 9s;
}

.meteor-layer span:nth-child(3) {
  left: 84%;
  animation-delay: 4.8s;
  animation-duration: 8s;
}

.meteor-layer span:nth-child(4) {
  left: 38%;
  animation-delay: 6.3s;
  animation-duration: 10s;
}

.section-pad {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-pad.compact {
  padding: 54px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 24px));
  margin: 12px auto 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(4, 8, 13, 0.68);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(4, 8, 13, 0.92);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}

.brand strong {
  color: var(--gold-2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  min-height: calc(100vh - 92px);
  padding-top: 42px;
  padding-bottom: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.4vw, 6.3rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text,
.page-hero p,
.showcase-copy p,
.feature-card p,
.value-card p,
.service-card p,
.timeline p,
.cta p,
details p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  color: #120d02;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 50px rgba(215, 173, 76, 0.28);
}

.btn.ghost {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.btn.small {
  min-height: 44px;
  width: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 212, 134, 0.72);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 38px;
}

.hero-stats span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.hero-stats strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.3rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  align-self: stretch;
}

.orbital {
  position: absolute;
  inset: 0 5% auto auto;
  width: min(460px, 72vw);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: spinSlow 22s linear infinite;
}

.solar-system {
  position: absolute;
  inset: -3% -2% 10% 4%;
  border: 1px solid rgba(215, 173, 76, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.solar-system::before,
.solar-system::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.solar-system::after {
  inset: 31%;
}

.planet-orbit {
  position: absolute;
  inset: var(--orbit-inset);
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  animation: spinSlow var(--orbit-speed) linear infinite;
}

.planet {
  position: absolute;
  top: -5px;
  left: 50%;
  width: var(--planet-size);
  height: var(--planet-size);
  border-radius: 50%;
  background: var(--planet-color);
  box-shadow: 0 0 18px var(--planet-glow);
}

.orbit-mercury {
  --orbit-inset: 34%;
  --orbit-speed: 8s;
}

.orbit-venus {
  --orbit-inset: 29%;
  --orbit-speed: 12s;
}

.orbit-earth {
  --orbit-inset: 24%;
  --orbit-speed: 16s;
}

.orbit-mars {
  --orbit-inset: 19%;
  --orbit-speed: 20s;
}

.orbit-jupiter {
  --orbit-inset: 13%;
  --orbit-speed: 27s;
}

.orbit-saturn {
  --orbit-inset: 8%;
  --orbit-speed: 34s;
}

.orbit-uranus {
  --orbit-inset: 3%;
  --orbit-speed: 42s;
}

.orbit-neptune {
  --orbit-inset: -2%;
  --orbit-speed: 52s;
}

.mercury {
  --planet-size: 7px;
  --planet-color: #b8a28f;
  --planet-glow: rgba(184, 162, 143, 0.55);
}

.venus {
  --planet-size: 10px;
  --planet-color: #d7ad4c;
  --planet-glow: rgba(215, 173, 76, 0.65);
}

.earth {
  --planet-size: 12px;
  --planet-color: #7fa4c7;
  --planet-glow: rgba(127, 164, 199, 0.75);
}

.mars {
  --planet-size: 9px;
  --planet-color: #c16d4f;
  --planet-glow: rgba(193, 109, 79, 0.65);
}

.jupiter {
  --planet-size: 18px;
  --planet-color: #d4b083;
  --planet-glow: rgba(212, 176, 131, 0.7);
}

.saturn {
  --planet-size: 16px;
  --planet-color: #d8c08a;
  --planet-glow: rgba(216, 192, 138, 0.7);
}

.saturn::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 6px;
  width: 30px;
  height: 5px;
  border: 1px solid rgba(243, 212, 134, 0.75);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.uranus {
  --planet-size: 11px;
  --planet-color: #96d8d4;
  --planet-glow: rgba(150, 216, 212, 0.72);
}

.neptune {
  --planet-size: 12px;
  --planet-color: #6278d9;
  --planet-glow: rgba(98, 120, 217, 0.72);
}

.orbital::before,
.orbital::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.orbital::after {
  inset: 31%;
  border-color: rgba(215, 173, 76, 0.18);
}

.compass-card {
  position: absolute;
  inset: 18%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  animation: spinReverse 22s linear infinite;
}

.compass-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 26px var(--gold);
}

.dot-a { top: 8%; left: 50%; }
.dot-b { right: 10%; bottom: 28%; }
.dot-c { left: 12%; bottom: 22%; }

.device-stack {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
}

.browser-window,
.tablet-window,
.phone-window {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 26, 39, 0.96), rgba(5, 9, 14, 0.96));
  box-shadow: var(--shadow);
}

.browser-window {
  width: 78%;
  min-height: 340px;
  padding: 16px;
  transform: perspective(900px) rotateY(-10deg) rotateX(5deg);
  animation: floatDevice 5.4s ease-in-out infinite;
}

.browser-top {
  display: flex;
  gap: 7px;
  margin-bottom: 36px;
}

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

.browser-content {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(215, 173, 76, 0.16), transparent),
    rgba(255, 255, 255, 0.04);
}

.browser-content p {
  max-width: 340px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.mock-line {
  width: 62%;
  height: 10px;
  margin: 14px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.mock-line.wide {
  width: 84%;
}

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

.mock-grid span {
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.phone-window {
  position: absolute;
  right: 1%;
  bottom: 4px;
  width: 160px;
  min-height: 260px;
  padding: 18px 14px;
  transform: rotate(4deg);
  animation: floatDevice 4.7s ease-in-out infinite reverse;
}

.tablet-window {
  position: absolute;
  right: 16%;
  bottom: -16px;
  width: 280px;
  height: 190px;
  padding: 14px;
  transform: rotate(-3deg);
  animation: floatDevice 6.2s ease-in-out infinite;
}

.tablet-screen {
  height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(215, 173, 76, 0.14), rgba(255, 255, 255, 0.035));
}

.tablet-screen span {
  display: block;
  width: 58%;
  height: 10px;
  margin-bottom: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.tablet-screen strong {
  color: var(--gold-2);
}

.phone-window span {
  display: block;
  width: 48px;
  height: 5px;
  margin: 0 auto 60px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.phone-window p {
  font-weight: 900;
  color: var(--gold-2);
}

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

.marquee-track {
  display: flex;
  min-width: max-content;
  gap: 0;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.marquee span {
  flex: 0 0 auto;
  min-width: max(260px, 16.66vw);
  color: var(--gold-2);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.feature-grid,
.values,
.service-board,
.pricing-grid,
.contact-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.value-card,
.service-card,
.process-card,
.price-card,
.meeting-card,
.contact-form,
.quote-builder,
details,
.process-strip,
.showcase-panel {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.feature-card,
.value-card,
.service-card,
.process-card,
.price-card,
.meeting-card,
.contact-form,
details,
.process-strip {
  padding: 24px;
}

.icon,
.service-card span,
.process-card span,
.timeline span,
.package-tag {
  color: var(--gold-2);
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase,
.device-lab {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: center;
}

.showcase-panel {
  overflow: hidden;
  padding: 10px;
  transform: rotate(-1.5deg);
}

.showcase-panel img {
  border-radius: var(--radius);
}

.text-link {
  color: var(--gold-2);
  font-weight: 900;
  border-bottom: 1px solid var(--gold);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.why-panel {
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, rgba(215, 173, 76, 0.13), transparent 19rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.why-panel h3 {
  margin-bottom: 20px;
  color: var(--white);
}

.why-switcher {
  display: grid;
  gap: 18px;
}

.why-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.why-option {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  color: var(--white);
  text-align: left;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.why-option::after {
  content: "";
  position: absolute;
  inset: auto -30% -65% auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(215, 173, 76, 0.18);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.why-option:hover,
.why-option.is-active {
  transform: translateY(-3px);
  border-color: rgba(243, 212, 134, 0.72);
  background: rgba(215, 173, 76, 0.1);
}

.why-option.is-active::after {
  transform: scale(1.4);
  opacity: 1;
}

.why-icon,
.why-info-icon {
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #120d02;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 950;
}

.why-icon {
  width: 48px;
  height: 48px;
}

.why-option strong {
  position: relative;
  z-index: 1;
}

.why-info {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 20%, rgba(215, 173, 76, 0.17), transparent 16rem),
    rgba(255, 255, 255, 0.04);
}

.why-info.is-bursting {
  animation: infoPop 0.42s ease-out;
}

.why-info-icon {
  width: 72px;
  height: 72px;
  font-size: 1.45rem;
  box-shadow: 0 18px 36px rgba(215, 173, 76, 0.2);
}

.why-info strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.16rem;
}

.why-info p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.orbit-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.orbit-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 173, 76, 0.14), transparent 18rem),
    radial-gradient(circle at 22% 18%, rgba(48, 88, 130, 0.2), transparent 19rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.orbit-stage::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(243, 212, 134, 0.1);
  border-radius: 50%;
  animation: spinSlow 28s linear infinite;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(216, 176, 85, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring-one {
  width: min(74%, 500px);
  aspect-ratio: 1;
  animation: orbitPulse 5s ease-in-out infinite;
}

.ring-two {
  width: min(58%, 390px);
  aspect-ratio: 1;
  border-color: rgba(255, 255, 255, 0.07);
  animation: orbitPulse 6.5s ease-in-out infinite reverse;
}

.ring-three {
  width: min(88%, 610px);
  aspect-ratio: 1;
  border-color: rgba(216, 176, 85, 0.12);
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(150px, 24vw, 220px);
  aspect-ratio: 1;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8)),
    var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32), 0 0 58px rgba(215, 173, 76, 0.15);
  transform: translate(-50%, -50%);
}

.orbit-center img {
  width: min(86%, 168px);
  height: auto;
  max-height: 150px;
  object-fit: contain;
}

.orbit-center strong,
.orbit-center span {
  color: var(--ink);
}

.orbit-center strong {
  margin-top: 6px;
  font-weight: 950;
}

.orbit-center span {
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0.68;
}

.orbit-choice {
  position: absolute;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: center;
  width: 158px;
  min-height: 64px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(9, 17, 27, 0.86);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  cursor: pointer;
  animation: floatOrbit 5.8s ease-in-out infinite;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.orbit-choice:hover,
.orbit-choice.is-active {
  border-color: rgba(243, 212, 134, 0.8);
  background: rgba(215, 173, 76, 0.16);
  box-shadow: 0 22px 58px rgba(215, 173, 76, 0.2);
}

.orbit-choice strong {
  font-size: 0.9rem;
}

.orbit-trust { top: 8%; left: 50%; transform: translateX(-50%); }
.orbit-google { top: 20%; right: 9%; animation-delay: -0.9s; }
.orbit-sales { right: 8%; bottom: 20%; animation-delay: -1.8s; }
.orbit-always { bottom: 8%; left: 50%; transform: translateX(-50%); animation-delay: -2.7s; }
.orbit-design { left: 8%; bottom: 20%; animation-delay: -3.6s; }
.orbit-mobile { top: 20%; left: 9%; animation-delay: -4.5s; }
.orbit-support { top: 50%; left: 3%; transform: translateY(-50%); animation-delay: -2s; }
.orbit-pricing { top: 50%; right: 3%; transform: translateY(-50%); animation-delay: -3s; }

.orbit-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.orbit-icon::before,
.orbit-icon::after {
  content: "";
  position: absolute;
  border-color: #120d02;
}

.trust-mark::before {
  width: 18px;
  height: 22px;
  border: 3px solid #120d02;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  transform: rotate(45deg);
}

.search-mark::before {
  width: 17px;
  height: 17px;
  border: 3px solid #120d02;
  border-radius: 50%;
  transform: translate(-3px, -3px);
}

.search-mark::after {
  width: 14px;
  height: 3px;
  background: #120d02;
  border-radius: 999px;
  transform: translate(9px, 9px) rotate(45deg);
}

.leads-mark::before {
  width: 23px;
  height: 18px;
  border: 3px solid #120d02;
  border-top: 0;
  transform: skewX(-14deg);
}

.leads-mark::after {
  width: 6px;
  height: 18px;
  background: #120d02;
  border-radius: 999px;
  transform: translateY(10px);
}

.clock-mark::before {
  width: 24px;
  height: 24px;
  border: 3px solid #120d02;
  border-radius: 50%;
}

.clock-mark::after {
  width: 11px;
  height: 11px;
  border-left: 3px solid #120d02;
  border-bottom: 3px solid #120d02;
  transform: translate(3px, -3px);
}

.design-mark::before {
  width: 24px;
  height: 6px;
  background: #120d02;
  border-radius: 999px;
  transform: rotate(-38deg);
}

.design-mark::after {
  width: 8px;
  height: 8px;
  background: #120d02;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(12px, -10px) rotate(-38deg);
}

.mobile-mark::before {
  width: 20px;
  height: 30px;
  border: 3px solid #120d02;
  border-radius: 6px;
}

.mobile-mark::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #120d02;
  transform: translateY(10px);
}

.support-mark::before {
  width: 26px;
  height: 20px;
  border: 3px solid #120d02;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.support-mark::after {
  width: 22px;
  height: 14px;
  border-left: 5px solid #120d02;
  border-right: 5px solid #120d02;
  border-bottom: 3px solid #120d02;
  border-radius: 0 0 10px 10px;
  transform: translateY(7px);
}

.pricing-mark::before {
  width: 24px;
  height: 18px;
  border: 3px solid #120d02;
  border-radius: 4px;
  transform: rotate(-12deg);
}

.pricing-mark::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #120d02;
  transform: translate(-6px, -4px);
}

.orbit-copy-panel {
  grid-template-columns: 1fr;
  min-height: 360px;
  align-content: center;
  background:
    radial-gradient(circle at 16% 14%, rgba(215, 173, 76, 0.22), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.orbit-copy-panel .eyebrow {
  margin-bottom: 8px;
}

.orbit-copy-panel strong {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.orbit-copy-panel .btn {
  margin-top: 24px;
}

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

.reviews-summary {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 22px;
  align-items: stretch;
}

.review-score,
.review-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 173, 76, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.review-score {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 34px;
}

.review-score strong {
  color: var(--gold-2);
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.stars {
  color: var(--gold-2);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.review-score p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  display: grid;
  gap: 18px;
  min-height: 250px;
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 212, 134, 0.72);
  box-shadow: 0 22px 70px rgba(215, 173, 76, 0.14);
}

.review-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(215, 173, 76, 0.12);
}

.review-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #120d02;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 950;
}

.review-top h3 {
  margin: 0;
}

.review-top span {
  color: var(--muted);
  font-size: 0.9rem;
}

.review-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.review-card .stars {
  position: relative;
  z-index: 1;
  font-size: 1rem;
}

.process-showcase {
  position: relative;
}

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

.process-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 118px;
  height: 118px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(215, 173, 76, 0.12);
}

.device-scene {
  position: relative;
  min-height: 520px;
}

.desktop-device,
.laptop-device,
.mobile-device {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 26, 39, 0.98), rgba(5, 9, 14, 0.98));
  box-shadow: var(--shadow);
}

.desktop-device {
  top: 22px;
  left: 0;
  right: 8%;
  height: 360px;
  padding: 18px;
  transform: perspective(1000px) rotateY(-8deg);
  animation: floatDevice 6s ease-in-out infinite;
}

.desktop-device::after {
  content: "";
  position: absolute;
  left: 42%;
  bottom: -56px;
  width: 120px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 0;
  background: rgba(255, 255, 255, 0.04);
}

.laptop-device {
  left: 9%;
  bottom: 20px;
  width: 58%;
  height: 230px;
  padding: 14px;
  transform: rotate(-2deg);
  animation: floatDevice 5.2s ease-in-out infinite reverse;
}

.mobile-device {
  right: 0;
  bottom: 44px;
  width: 150px;
  height: 292px;
  padding: 14px;
  transform: rotate(4deg);
  animation: floatDevice 4.6s ease-in-out infinite;
}

.screen-nav,
.screen-hero,
.screen-cards span,
.mobile-device > span {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}

.screen-nav {
  width: 100%;
  height: 36px;
  margin-bottom: 18px;
}

.screen-hero {
  height: 120px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(215, 173, 76, 0.28), rgba(255, 255, 255, 0.07));
}

.screen-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.screen-cards span {
  height: 84px;
}

.laptop-device .screen-hero {
  height: 92px;
}

.laptop-device .screen-cards {
  grid-template-columns: repeat(2, 1fr);
}

.mobile-device .screen-nav {
  height: 22px;
}

.mobile-device .screen-hero {
  height: 94px;
}

.mobile-device > span {
  display: block;
  height: 28px;
  margin-top: 10px;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.packages-page {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.package-hero {
  padding-bottom: 34px;
}

.package-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.package-hero p:not(.eyebrow) {
  max-width: 760px;
}

.limited-deal-card {
  padding: 26px;
  border-color: rgba(243, 212, 134, 0.72);
  background:
    radial-gradient(circle at 18% 8%, rgba(243, 212, 134, 0.18), transparent 35%),
    linear-gradient(145deg, rgba(13, 25, 38, 0.98), rgba(6, 13, 20, 0.98));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.limited-deal-card.featured {
  transform: none;
}

.offer-ribbon {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 2px;
  width: calc(100% + 52px);
  margin: 10px -26px 22px;
  padding: 11px 16px 10px;
  color: #06111b;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(90deg, #f6d56f, #ffe48d, #d7ad4c);
  box-shadow: 0 8px 24px rgba(215, 173, 76, 0.28);
}

.offer-ribbon::before,
.offer-ribbon::after {
  content: "";
  position: absolute;
  top: 100%;
  border-top: 12px solid #9f7c25;
}

.offer-ribbon::before {
  left: 0;
  border-left: 12px solid transparent;
}

.offer-ribbon::after {
  right: 0;
  border-right: 12px solid transparent;
}

.offer-ribbon span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.offer-ribbon small {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.regular-pricing {
  padding-top: 18px;
}

.regular-pricing .section-heading {
  margin-bottom: 28px;
}

.regular-pricing .section-heading h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.regular-pricing .packages-page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 1120px) {
  .regular-pricing .packages-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(215, 173, 76, 0.22), transparent 45%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card:hover::before,
.price-card.is-selected::before {
  opacity: 1;
}

.price-card.featured {
  border-color: rgba(243, 212, 134, 0.55);
  transform: translateY(-14px);
}

.price-card h3 {
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(2.4rem, 4.5vw, 3.7rem);
  letter-spacing: -0.05em;
}

.price-card > span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
}

.price-card ul {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-card .btn {
  margin-top: auto;
}

.price-card li {
  margin: 9px 0;
  color: var(--muted);
}

.price-card li::before {
  content: "+";
  margin-right: 10px;
  color: var(--gold-2);
  font-weight: 900;
}

.package-details {
  width: 100%;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.package-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(243, 212, 134, 0.26);
  border-radius: 999px;
  background: rgba(243, 212, 134, 0.07);
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.package-details summary:hover {
  border-color: rgba(243, 212, 134, 0.48);
  background: rgba(243, 212, 134, 0.12);
}

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

.package-details summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(243, 212, 134, 0.34);
  border-radius: 50%;
  color: var(--gold-2);
  font-size: 0.76rem;
  line-height: 1;
}

.package-details[open] summary::after {
  content: "-";
}

.package-details ul {
  width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(4, 10, 16, 0.28);
}

.limited-offer-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(260px, 0.8fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px clamp(18px, 4vw, 32px);
  border: 1px solid rgba(243, 212, 134, 0.45);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 15%, rgba(243, 212, 134, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(42, 45, 39, 0.92), rgba(12, 20, 31, 0.94));
  box-shadow: 0 22px 80px rgba(215, 173, 76, 0.12);
}

.limited-offer-banner h2,
.limited-offer-banner p,
.limited-offer-banner strong {
  margin: 0;
}

.limited-offer-banner > p {
  color: var(--muted);
  line-height: 1.65;
}

.limited-offer-banner strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  line-height: 1.08;
}

.package-note,
.hosting-note {
  margin: -4px 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.hosting-note {
  padding: 9px 11px;
  border: 1px solid rgba(243, 212, 134, 0.24);
  border-radius: 10px;
  background: rgba(243, 212, 134, 0.08);
  color: var(--muted);
  font-weight: 500;
}

.package-breakdown,
.qrafted-services {
  padding-top: 28px;
}

.breakdown-grid,
.addon-grid {
  display: grid;
  gap: 18px;
}

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

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

.breakdown-card,
.addon-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(215, 173, 76, 0.15), transparent 38%),
    linear-gradient(145deg, rgba(26, 37, 48, 0.88), rgba(9, 15, 23, 0.94));
  overflow: hidden;
}

.breakdown-card span,
.addon-card span {
  width: max-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(243, 212, 134, 0.12);
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breakdown-card h3,
.addon-card h3 {
  margin: 0;
  color: var(--white);
}

.breakdown-card p,
.addon-card p,
.breakdown-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.breakdown-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breakdown-card li::before {
  content: "+";
  margin-right: 10px;
  color: var(--gold-2);
  font-weight: 900;
}

.addon-card a {
  color: var(--gold-2);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta {
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 20%, rgba(215, 173, 76, 0.22), transparent 26rem),
    var(--panel);
}

.page-hero {
  min-height: 34vh;
  display: grid;
  align-items: end;
  padding-top: 58px;
  padding-bottom: 42px;
}

.page-hero > div {
  max-width: 920px;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  padding: 18px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
}

.values {
  grid-template-columns: repeat(3, 1fr);
}

.service-board {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 240px;
}

.portfolio-grid {
  display: grid;
  gap: 34px;
  padding-top: 34px;
}

.portfolio-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 10%, rgba(215, 173, 76, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.client-logo {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
    #f8fbff;
  padding: 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  animation: logoFloat 6s ease-in-out infinite;
}

.client-logo::after {
  content: "";
  position: absolute;
  inset: -40% -70%;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.42), transparent 62%);
  transform: translateX(-60%) rotate(8deg);
  animation: logoShimmer 5.8s ease-in-out infinite;
}

.client-logo img {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.12));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.portfolio-card:hover .client-logo {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(243, 212, 134, 0.72);
  box-shadow: 0 22px 70px rgba(215, 173, 76, 0.16);
}

.portfolio-card:hover .client-logo img {
  transform: scale(1.035) rotate(-1deg);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}

.sousies-client-logo {
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 93, 28, 0.2), transparent 12rem),
    #020202;
}

.sousies-client-logo img {
  width: min(100%, 330px);
  max-height: 210px;
  filter: drop-shadow(0 18px 32px rgba(255, 86, 30, 0.18));
}

.qrafts-client-logo img {
  width: min(100%, 260px);
  max-height: 220px;
  border-radius: var(--radius);
}

.text-client-logo {
  align-content: center;
  justify-items: center;
  text-align: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.9)),
    #f8fbff;
}

.text-client-logo span {
  position: relative;
  z-index: 1;
  color: #8f1111;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.text-client-logo strong {
  position: relative;
  z-index: 1;
  max-width: 220px;
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tops-client-logo img {
  width: min(100%, 300px);
  max-height: 190px;
  object-fit: contain;
}

.client-details h2 {
  margin-bottom: 18px;
}

.client-details p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.client-tags span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.86rem;
  font-weight: 800;
}

.client-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
}

.client-link:hover {
  border-color: rgba(243, 212, 134, 0.72);
  color: var(--gold-2);
}

.process-strip div {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.process-strip span {
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--gold-2);
  text-align: center;
  font-weight: 900;
}

.quote-builder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
}

.faq {
  padding-top: 20px;
}

details {
  margin-bottom: 12px;
}

summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 900;
}

.contact-grid {
  grid-template-columns: 1fr 0.72fr;
  align-items: start;
}

.contact-form,
.meeting-card {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.honeypot {
  display: none;
}

.calendar-preview {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.calendar-top strong {
  color: var(--white);
  font-size: 1.1rem;
  text-align: center;
}

.calendar-nav {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.calendar-nav:hover {
  border-color: var(--gold);
}

.selected-date {
  margin: 12px 0;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.calendar-grid {
  margin-bottom: 16px;
}

.calendar-grid button {
  min-height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.calendar-grid button:hover:not(:disabled) {
  border-color: var(--gold);
}

.calendar-grid button:disabled {
  cursor: not-allowed;
  color: rgba(174, 184, 198, 0.38);
  background: rgba(255, 255, 255, 0.025);
}

.calendar-grid button.weekend:not(:disabled) {
  color: var(--muted);
}

.calendar-blank {
  min-height: 38px;
}

.slot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.slot-row button {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.calendar-grid button.is-selected,
.slot-row button:hover,
.slot-row button.is-selected {
  color: #120d02;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.slot-row button {
  flex: 1 1 78px;
}

label {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--white);
  background: rgba(1, 5, 10, 0.7);
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(215, 173, 76, 0.13);
}

.date-display {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--white);
  background: rgba(1, 5, 10, 0.7);
  font: inherit;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.date-display:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(215, 173, 76, 0.13);
  outline: none;
}

.native-date-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-note,
.contact-methods a,
.contact-methods span {
  color: var(--muted);
}

.form-note {
  min-height: 24px;
}

.form-note[data-state="success"] {
  color: #8ff0b4;
}

.form-note[data-state="warning"] {
  color: var(--gold-2);
}

.form-note[data-state="error"] {
  color: #ff9a9a;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contact-methods {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr;
  gap: 28px;
  width: min(1240px, calc(100% - 32px));
  margin: 40px auto 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background:
    radial-gradient(circle at 12% 8%, rgba(215, 173, 76, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.site-footer strong {
  color: var(--white);
  font-size: 1.25rem;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
}

.footer-brand p {
  margin: 8px 0 0;
  max-width: 360px;
  line-height: 1.6;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
  align-content: start;
}

.site-footer h3 {
  margin: 0 0 6px;
  color: var(--gold-2);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 176, 85, 0.22);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }

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

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

@keyframes spinCentered {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

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

@keyframes meteor {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-28deg);
  }
  8% {
    opacity: 1;
  }
  22% {
    opacity: 0;
    transform: translate3d(-520px, 360px, 0) rotate(-28deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(-520px, 360px, 0) rotate(-28deg);
  }
}

@keyframes floatDevice {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

@keyframes infoPop {
  0% { transform: scale(0.97); box-shadow: 0 0 0 rgba(215, 173, 76, 0); }
  55% { transform: scale(1.015); box-shadow: 0 0 48px rgba(215, 173, 76, 0.18); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(215, 173, 76, 0); }
}

@keyframes orbitPulse {
  0%, 100% { opacity: 0.56; scale: 1; }
  50% { opacity: 0.9; scale: 1.035; }
}

@keyframes floatOrbit {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes logoFloat {
  0%, 100% { box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1); }
  50% { box-shadow: 0 24px 70px rgba(215, 173, 76, 0.18); }
}

@keyframes logoShimmer {
  0%, 52% { transform: translateX(-64%) rotate(8deg); opacity: 0; }
  62% { opacity: 1; }
  78%, 100% { transform: translateX(64%) rotate(8deg); opacity: 0; }
}

@media (max-width: 1040px) {
  .hero,
  .split,
  .showcase,
  .device-lab,
  .orbit-experience,
  .reviews-summary,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .feature-grid,
  .pricing-grid,
  .packages-page,
  .values,
  .service-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-strip div {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .orbit-copy-panel {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .section-pad {
    width: min(100% - 24px, 1160px);
    padding: 48px 0;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }

  .hero-stats,
  .feature-grid,
  .pricing-grid,
  .packages-page,
  .regular-pricing .packages-page,
  .limited-offer-banner,
  .breakdown-grid,
  .addon-grid,
  .values,
  .why-grid,
  .reviews-summary,
  .reviews-grid,
    .service-board,
    .process-grid,
    .process-strip div {
    grid-template-columns: 1fr;
  }

  .why-panel {
    padding: 20px;
  }

  .why-options,
  .why-info {
    grid-template-columns: 1fr;
  }

  .why-option {
    grid-template-columns: 44px 1fr;
    min-height: 68px;
  }

  .why-icon {
    width: 44px;
    height: 44px;
  }

  .why-info {
    gap: 12px;
    min-height: auto;
    text-align: left;
  }

  .limited-offer-banner .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .package-details {
    width: 100%;
  }

  .package-details summary {
    width: max-content;
    max-width: 100%;
  }

  .package-details ul {
    width: 100%;
  }

  .why-info-icon {
    width: 56px;
    height: 56px;
  }

  .orbit-stage {
    min-height: 560px;
  }

  .orbit-choice {
    grid-template-columns: 40px 1fr;
    width: 138px;
    min-height: 58px;
    padding: 8px;
  }

  .orbit-choice strong {
    font-size: 0.82rem;
  }

  .orbit-icon {
    width: 40px;
    height: 40px;
  }

  .orbit-trust { top: 5%; }
  .orbit-google { top: 18%; right: 3%; }
  .orbit-sales { right: 3%; bottom: 18%; }
  .orbit-always { bottom: 5%; }
  .orbit-design { left: 3%; bottom: 18%; }
  .orbit-mobile { top: 18%; left: 3%; }
  .orbit-support { left: 1%; }
  .orbit-pricing { right: 1%; }

  .orbit-center {
    width: 148px;
    padding: 14px;
  }

  .why-detail-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    grid-template-columns: 1fr;
  }

  .client-logo {
    min-height: 210px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .orbital {
    inset: 0 auto auto 50%;
    width: min(340px, 88vw);
    animation: spinCentered 22s linear infinite;
  }

  .solar-system {
    inset: 2% 4% 22% 4%;
  }

  .planet-orbit {
    border-color: rgba(255, 255, 255, 0.035);
  }

  .jupiter {
    --planet-size: 14px;
  }

  .saturn {
    --planet-size: 13px;
  }

  .browser-window {
    width: 86%;
    min-height: 284px;
  }

  .tablet-window {
    width: 210px;
    height: 145px;
    right: 16%;
  }

  .phone-window {
    width: 124px;
    min-height: 214px;
  }

  .device-scene {
    min-height: 430px;
  }

  .desktop-device {
    right: 0;
    height: 280px;
  }

  .laptop-device {
    width: 70%;
  }

  .mobile-device {
    width: 118px;
    height: 238px;
  }

  .price-card.featured {
    transform: none;
  }

  .quote-builder,
  .site-footer {
    display: grid;
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .footer-brand {
    align-items: flex-start;
  }

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

  .footer-bottom {
    display: grid;
  }

  .cta {
    padding: 32px 20px;
  }
}

@media (max-width: 520px) {
  .section-pad {
    width: min(100% - 20px, 1160px);
  }

  .quote-builder {
    gap: 18px;
    padding: 22px 16px;
    overflow: hidden;
  }

  .quote-builder h2 {
    font-size: clamp(2rem, 11vw, 3.05rem);
    line-height: 1;
    letter-spacing: -0.045em;
    overflow-wrap: anywhere;
  }

  .quote-builder p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .quote-builder .btn {
    width: 100%;
    padding-inline: 14px;
    white-space: normal;
    text-align: center;
  }

  .meeting-card,
  .contact-form {
    padding: 20px 16px;
  }

  .calendar-preview {
    padding: 12px;
  }

  .slot-row {
    gap: 8px;
  }

  .slot-row button {
    flex: 1 1 calc(50% - 8px);
  }

  .date-display,
  select,
  input,
  textarea {
    min-height: 56px;
    font-size: 16px;
  }

  .contact-methods a,
  .contact-methods span {
    overflow-wrap: anywhere;
  }

  .orbit-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: auto;
    padding: 18px;
  }

  .orbit-stage::before,
  .orbit-ring {
    display: none;
  }

  .orbit-center {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    justify-self: center;
    margin-bottom: 8px;
    transform: none;
  }

  .orbit-choice,
  .orbit-trust,
  .orbit-google,
  .orbit-sales,
  .orbit-always,
  .orbit-design,
  .orbit-mobile,
  .orbit-support,
  .orbit-pricing {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    transform: none;
    animation: none;
  }

  .orbit-copy-panel {
    grid-template-columns: 1fr;
  }

  .orbit-copy-panel strong {
    font-size: 2rem;
  }
}

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

}

.login-shell {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding-top: clamp(56px, 8vw, 110px);
}

.login-card {
  width: min(100%, 620px);
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(239, 195, 91, 0.32);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 12%, rgba(239, 195, 91, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(32, 43, 54, 0.94), rgba(8, 14, 21, 0.94));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.login-brand img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.login-card h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  line-height: 0.95;
}

.login-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.login-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.login-form label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-form input {
  width: 100%;
}

.login-form .btn {
  width: 100%;
  margin-top: 6px;
}

.login-message {
  min-height: 1.4em;
  margin: 0;
  font-weight: 800;
}

.login-message.success {
  color: #8dffbf;
}

.login-message.error {
  color: #ffd76f;
}

.seo-focus-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.seo-focus-panel h2 {
  margin: 0;
}

.seo-copy {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.seo-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.seo-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.seo-service-card {
  display: grid;
  gap: 14px;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 12%, rgba(239, 195, 91, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(26, 37, 48, 0.88), rgba(9, 15, 23, 0.92));
}

.seo-service-card span {
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(239, 195, 91, 0.13);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-service-card strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.seo-service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-detail-hero {
  padding-bottom: 24px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.service-article,
.service-sidebar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.service-article {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
}

.service-article h2,
.service-article h3,
.service-sidebar h2 {
  margin: 0;
}

.service-article p,
.service-article li,
.service-sidebar p,
.service-sidebar li {
  color: var(--muted);
  line-height: 1.75;
}

.service-article ul,
.service-sidebar ul {
  margin: 0;
  padding-left: 20px;
}

.service-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.service-sidebar .btn {
  width: 100%;
  text-align: center;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid rgba(243, 212, 134, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 212, 134, 0.55);
  background: rgba(243, 212, 134, 0.12);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-2);
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .seo-focus-panel,
  .service-detail {
    grid-template-columns: 1fr;
  }

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

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 520px) {
  .login-brand {
    align-items: flex-start;
  }

  .login-brand img {
    width: 58px;
    height: 58px;
  }

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

  .seo-service-card {
    min-height: auto;
  }
}

/* Performance tuning: keep the space theme without hammering 60hz laptop GPUs. */
.performance-mode .meteor-layer span,
.performance-mode .orbital,
.performance-mode .planet-orbit,
.performance-mode .device-mockup,
.performance-mode .mobile-mockup,
.performance-mode .tablet-mockup,
.performance-mode .orbit-stage::before,
.performance-mode .orbit-ring,
.performance-mode .orbit-choice,
.performance-mode .portfolio-logo-card,
.performance-mode .portfolio-logo-card::after {
  animation: none !important;
}

.performance-mode .starfield {
  opacity: 0.42;
}

.performance-mode .meteor-layer {
  display: none;
}

.performance-mode .orbital,
.performance-mode .device-mockup,
.performance-mode .mobile-mockup,
.performance-mode .tablet-mockup,
.performance-mode .portfolio-logo-card {
  transform: none !important;
}

.performance-mode .planet-orbit {
  opacity: 0.62;
}

@media (max-width: 1024px), (update: slow) {
  .meteor-layer {
    display: none;
  }

  .orbital,
  .planet-orbit,
  .device-mockup,
  .mobile-mockup,
  .tablet-mockup,
  .orbit-stage::before,
  .orbit-ring,
  .orbit-choice {
    animation-duration: 80s !important;
  }

  .starfield {
    opacity: 0.48;
  }
}

@media (max-width: 760px) {
  .solar-system,
  .orbital::before,
  .orbital::after {
    opacity: 0.55;
  }

  .planet-orbit {
    animation: none !important;
  }
}

/* Static premium background: no continuous background motion by default. */
.starfield,
.meteor-layer,
.cursor-glow {
  display: none !important;
}

.marquee-track,
.orbital,
.orbital::before,
.orbital::after,
.orbit-dot,
.planet-orbit,
.device-stack,
.device-scene,
.desktop-device,
.laptop-device,
.mobile-device,
.portfolio-logo-card,
.portfolio-logo-card::after {
  animation: none !important;
}

.orbital,
.device-stack,
.device-scene,
.desktop-device,
.laptop-device,
.mobile-device,
.portfolio-logo-card {
  transform: none !important;
}

.solar-system {
  opacity: 0.68;
}

.planet-orbit {
  opacity: 0.42;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  transform: none !important;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

img[loading="lazy"] {
  content-visibility: auto;
}

/* Visual polish: calmer typography and brand-matched portfolio logos. */
h1 {
  font-size: clamp(2.75rem, 5.65vw, 5.55rem);
  font-weight: 820;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 4.25vw, 3.85rem);
  font-weight: 780;
  letter-spacing: -0.032em;
}

.btn,
.client-link,
button {
  font-weight: 780;
  letter-spacing: 0.005em;
}

.eyebrow,
.client-tags span {
  font-weight: 760;
}

.portfolio-card {
  grid-template-columns: 230px 1fr;
  gap: 30px;
}

.client-logo {
  min-height: 230px;
  padding: 22px;
  border-color: rgba(243, 212, 134, 0.2);
  background:
    radial-gradient(circle at 50% 45%, rgba(243, 212, 134, 0.08), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--panel);
  animation: none;
}

.client-logo::after {
  opacity: 0.34;
  animation: none;
}

.client-logo img {
  width: min(100%, 320px);
  max-height: 170px;
}

.sousies-client-logo,
.tops-client-logo {
  background:
    radial-gradient(circle at 50% 45%, rgba(243, 120, 43, 0.16), transparent 11rem),
    #030303;
}

.sousies-client-logo img {
  width: min(100%, 300px);
  max-height: 178px;
  filter: drop-shadow(0 16px 30px rgba(255, 86, 30, 0.2));
}

.tops-client-logo img {
  width: min(100%, 265px);
  max-height: 178px;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.22));
}

.qrafts-client-logo {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.58), transparent 11rem),
    #f4ecd8;
}

.qrafts-client-logo img {
  width: min(100%, 235px);
  max-height: 178px;
}

.client-details h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 740;
  letter-spacing: -0.03em;
}

.client-details p:not(.eyebrow) {
  font-size: 1rem;
  line-height: 1.7;
}

.client-tags span {
  padding: 8px 11px;
  font-size: 0.8rem;
}

.client-link {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .portfolio-card {
    grid-template-columns: 200px 1fr;
  }

  .client-logo {
    min-height: 210px;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.35rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .portfolio-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .client-logo {
    min-height: 190px;
    padding: 18px;
  }

  .client-details h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }
}

/* Final typography balance: reduce oversized headers and button heaviness site-wide. */
:root {
  --display-weight: 720;
  --heading-weight: 700;
  --button-weight: 680;
}

h1,
.hero h1,
.page-hero h1,
.package-hero h1,
.login-card h1 {
  max-width: 920px;
  font-size: clamp(2.45rem, 4.85vw, 4.85rem) !important;
  font-weight: var(--display-weight) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.028em !important;
}

h2,
.section-heading h2,
.regular-pricing .section-heading h2,
.quote-builder h2,
.seo-focus-panel h2,
.service-article h2,
.service-sidebar h2,
.cta h2 {
  max-width: 860px;
  font-size: clamp(1.85rem, 3.4vw, 3.25rem) !important;
  font-weight: var(--heading-weight) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.022em !important;
}

.hero-copy h1,
.hero-content h1 {
  font-size: clamp(2.65rem, 5vw, 4.95rem) !important;
}

.client-details h2 {
  font-size: clamp(1.85rem, 3.25vw, 3.1rem) !important;
  font-weight: 680 !important;
  line-height: 1.08 !important;
}

.price-card h2,
.package-card h2,
.review-card h2,
.value-card h2 {
  font-weight: 700 !important;
}

.btn,
.client-link,
.login-form .btn,
.price-card .btn,
.quote-builder .btn,
.service-sidebar .btn,
.limited-offer-banner .btn,
button[type="submit"] {
  font-weight: var(--button-weight) !important;
  letter-spacing: 0 !important;
}

.eyebrow,
.client-tags span,
.nav-link,
.site-nav a,
.package-card li,
.price-card li {
  font-weight: 650 !important;
}

@media (max-width: 1024px) {
  h1,
  .hero h1,
  .page-hero h1,
  .package-hero h1 {
    font-size: clamp(2.25rem, 6vw, 4rem) !important;
  }

  h2,
  .section-heading h2,
  .regular-pricing .section-heading h2,
  .cta h2 {
    font-size: clamp(1.75rem, 4.4vw, 2.85rem) !important;
  }
}

@media (max-width: 760px) {
  h1,
  .hero h1,
  .page-hero h1,
  .package-hero h1,
  .login-card h1 {
    font-size: clamp(2.05rem, 10.5vw, 3.25rem) !important;
    line-height: 1.08 !important;
  }

  h2,
  .section-heading h2,
  .regular-pricing .section-heading h2,
  .quote-builder h2,
  .cta h2 {
    font-size: clamp(1.55rem, 8vw, 2.35rem) !important;
    line-height: 1.14 !important;
  }

  .client-details h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem) !important;
  }

  .btn,
  .client-link,
  button[type="submit"] {
    font-size: 0.95rem;
    font-weight: 650 !important;
  }
}

/* Static hero logo and portfolio package-card layout. */
.hero-visual .orbital,
.hero-visual .compass-card,
.hero-visual .planet-orbit {
  animation: none !important;
  transform: none !important;
}

.hero-visual .compass-card img {
  transform: none !important;
  image-rendering: auto;
}

.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.portfolio-card {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
  padding: 24px;
}

.portfolio-card .client-logo {
  width: 100%;
  min-height: 190px;
  margin-bottom: 22px;
  border-radius: 8px;
}

.portfolio-card .client-logo img {
  width: min(100%, 210px);
  max-height: 155px;
  object-fit: contain;
}

.portfolio-card .client-details {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.portfolio-card .client-details h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 2.6vw, 2.65rem) !important;
  font-weight: 640 !important;
}

.portfolio-card .client-tags {
  margin-top: 18px;
}

.portfolio-card .client-link {
  align-self: flex-start;
  margin-top: auto;
}

.sousies-client-logo,
.tops-client-logo,
.crown-client-logo {
  background: #050607 !important;
  box-shadow: inset 0 0 0 1px rgba(241, 200, 96, 0.28), 0 20px 52px rgba(0, 0, 0, 0.32);
}

.crown-client-logo {
  color: var(--gold);
  display: grid;
  place-items: center;
  text-align: center;
}

.crown-client-logo .crown-mark {
  display: block;
  color: #f8f4e8;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.crown-client-logo strong {
  color: var(--gold);
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-card {
    padding: 20px;
  }

  .portfolio-card .client-logo {
    min-height: 170px;
  }
}
/* Portfolio image-led showcase cards. */
.portfolio-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.portfolio-showcase-card {
  display: flex !important;
  flex-direction: column;
  grid-template-columns: none !important;
  gap: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background: #000 !important;
  border-color: rgba(241, 200, 96, 0.28) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.portfolio-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: 0;
  background: #000;
  border-bottom: 1px solid rgba(241, 200, 96, 0.18);
}

.portfolio-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 35%, rgba(241, 200, 96, 0.12), transparent 56%);
}

.portfolio-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card-media-light img {
  object-fit: contain;
  padding: 34px;
  filter: invert(1) drop-shadow(0 0 22px rgba(241, 200, 96, 0.22));
}

.portfolio-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 26px;
  background: #000;
}

.portfolio-card-body .eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
}

.portfolio-card-body h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.015em !important;
}

.portfolio-card-body p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.portfolio-card-body .client-tags {
  margin: 20px 0 0;
  gap: 8px;
}

.portfolio-card-body .client-tags span {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(241, 200, 96, 0.3);
}

.portfolio-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-card-actions > span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-showcase-card .client-link {
  min-height: 38px;
  margin: 0;
  padding: 0 16px;
  font-size: 0.82rem;
  font-weight: 500 !important;
}

.portfolio-showcase-card .client-link.disabled {
  cursor: default;
  opacity: 0.62;
  pointer-events: none;
}

@media (max-width: 1120px) {
  .portfolio-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .portfolio-showcase-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-card-body {
    padding: 20px;
  }

  .portfolio-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .portfolio-showcase-card .client-link {
    width: 100%;
    justify-content: center;
  }
}
/* Production-safe portfolio tile layout. */
.portfolio-tile-grid {
  display: grid !important;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 36px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px;
  align-items: stretch;
}

.portfolio-tile {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(241, 200, 96, 0.28);
  border-radius: 16px;
  background: #000;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.portfolio-tile-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.08 / 1;
  margin: 0;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(241, 200, 96, 0.18);
}

.portfolio-tile-media img {
  display: block;
  width: min(76%, 250px);
  height: min(76%, 250px);
  object-fit: contain;
  border-radius: 14px;
  background: #000;
}

.portfolio-tile-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
  background: linear-gradient(180deg, #07111c 0%, #03070b 100%);
}

.portfolio-tile-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-tile h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.1vw, 2.05rem) !important;
  font-weight: 580 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
}

.portfolio-tile-body p:not(.portfolio-tile-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.62;
}

.portfolio-tile-rule {
  width: 100%;
  height: 1px;
  margin: 20px 0 16px;
  background: rgba(241, 200, 96, 0.18);
}

.portfolio-tile-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-tile-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border: 1px solid rgba(243, 212, 134, 0.55);
  border-radius: 8px;
  color: #07111c;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 560;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.portfolio-tile-button.is-disabled {
  cursor: default;
  opacity: 0.72;
}

@media (max-width: 1040px) {
  .portfolio-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .portfolio-tile-grid {
    width: min(100% - 28px, 520px);
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .portfolio-tile-media {
    aspect-ratio: 16 / 10;
  }

  .portfolio-tile-media img {
    width: min(72%, 220px);
    height: min(72%, 220px);
  }

  .portfolio-tile-body {
    padding: 22px;
  }
}

/* Production compact typography correction - 2026-08-01 */
:root {
  --display-weight: 650;
  --heading-weight: 610;
  --button-weight: 520;
}

h1,
.hero h1,
.hero-copy h1,
.hero-content h1,
.page-hero h1,
.package-hero h1,
.service-detail-hero h1,
.login-card h1 {
  max-width: 820px;
  font-size: clamp(2.05rem, 3.6vw, 3.75rem) !important;
  font-weight: var(--display-weight) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.018em !important;
}

h2,
.section-heading h2,
.regular-pricing .section-heading h2,
.quote-builder h2,
.seo-focus-panel h2,
.service-article h2,
.service-sidebar h2,
.cta h2,
.page-hero h2,
.split h2 {
  max-width: 780px;
  font-size: clamp(1.5rem, 2.55vw, 2.45rem) !important;
  font-weight: var(--heading-weight) !important;
  line-height: 1.16 !important;
  letter-spacing: -0.014em !important;
}

.service-card h2,
.price-card h2,
.package-card h2,
.portfolio-tile h2,
.portfolio-card-body h2,
.client-details h2,
.reason-detail h2 {
  font-size: clamp(1.28rem, 1.9vw, 1.9rem) !important;
  font-weight: 560 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.012em !important;
}

.eyebrow,
.service-card span,
.timeline article span,
.timeline article h3,
.portfolio-tile-kicker,
.portfolio-tile-meta,
.package-details summary,
.package-card h3 {
  font-size: 0.68rem !important;
  font-weight: 610 !important;
  letter-spacing: 0.12em !important;
}

.btn,
button,
input[type="submit"],
.client-link,
.portfolio-tile-button,
.package-button,
.price-card .btn,
.package-card .btn {
  font-weight: var(--button-weight) !important;
}

@media (max-width: 900px) {
  h1,
  .hero h1,
  .hero-copy h1,
  .hero-content h1,
  .page-hero h1,
  .package-hero h1,
  .service-detail-hero h1,
  .login-card h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 7.6vw, 3rem) !important;
    line-height: 1.12 !important;
  }

  h2,
  .section-heading h2,
  .regular-pricing .section-heading h2,
  .quote-builder h2,
  .seo-focus-panel h2,
  .service-article h2,
  .service-sidebar h2,
  .cta h2,
  .page-hero h2,
  .split h2 {
    font-size: clamp(1.35rem, 5.6vw, 2.15rem) !important;
    line-height: 1.16 !important;
  }
}

@media (max-width: 620px) {
  h1,
  .hero h1,
  .hero-copy h1,
  .hero-content h1,
  .page-hero h1,
  .package-hero h1,
  .service-detail-hero h1,
  .login-card h1 {
    font-size: clamp(1.85rem, 9vw, 2.55rem) !important;
    letter-spacing: -0.012em !important;
  }

  .service-card h2,
  .price-card h2,
  .package-card h2,
  .portfolio-tile h2,
  .portfolio-card-body h2,
  .client-details h2,
  .reason-detail h2 {
    font-size: clamp(1.22rem, 6vw, 1.65rem) !important;
  }

  .eyebrow,
  .service-card span,
  .timeline article span,
  .timeline article h3,
  .portfolio-tile-kicker,
  .portfolio-tile-meta,
  .package-details summary,
  .package-card h3 {
    font-size: 0.64rem !important;
    letter-spacing: 0.1em !important;
  }
}

/* Layout balance pass - full-width headers and card rhythm - 2026-08-01 */
.page-hero > div,
.page-hero > .reveal,
.page-hero .reveal,
.section-heading {
  width: 100% !important;
  max-width: 100% !important;
}

.page-hero h1,
.contact-hero h1,
.quote-builder h2,
.cta h2 {
  max-width: min(1180px, 100%) !important;
  font-size: clamp(2rem, 3.15vw, 3.35rem) !important;
  line-height: 1.12 !important;
  font-weight: 590 !important;
  letter-spacing: -0.025em !important;
}

.section-heading h2,
.seo-focus-panel h2,
.service-link-grid .section-heading h2,
.regular-pricing .section-heading h2,
.difference-section h2,
.compass-section h2 {
  max-width: min(1180px, 100%) !important;
  font-size: clamp(1.75rem, 2.75vw, 3rem) !important;
  line-height: 1.14 !important;
  font-weight: 580 !important;
  letter-spacing: -0.018em !important;
}

.seo-focus-panel {
  grid-template-columns: 1fr !important;
  gap: 24px !important;
}

.seo-focus-panel > div,
.seo-focus-panel .seo-copy {
  width: 100% !important;
  max-width: min(1180px, 100%) !important;
}

.service-link-grid {
  display: block !important;
}

.service-link-grid .seo-service-grid {
  margin-top: 26px;
}

.compass-section,
.difference-section {
  display: block !important;
}

.compass-section > .reveal:first-child,
.difference-section > .reveal:first-child {
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: clamp(20px, 3vw, 34px);
}

.compass-section .timeline {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.compass-section .timeline article {
  min-height: 168px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(243, 212, 134, 0.22) !important;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.compass-section .timeline article span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(243, 212, 134, 0.13);
  font-weight: 520 !important;
  letter-spacing: 0.08em !important;
}

.difference-section .feature-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.difference-section .feature-card {
  min-height: 100%;
}

.price-card .package-tag,
.price-card > span,
.package-card h3,
.package-details summary {
  font-weight: 520 !important;
  letter-spacing: 0.08em !important;
}

.price-card h3 {
  font-weight: 560 !important;
  letter-spacing: -0.025em !important;
}

.price-card li,
.package-card li,
.btn,
button,
.client-link,
.portfolio-tile-button,
.package-button,
.price-card .btn,
.package-card .btn {
  font-weight: 500 !important;
}

.service-card h2,
.feature-card h3,
.value-card h3,
.seo-service-card strong,
.process-card h3 {
  font-weight: 560 !important;
}

@media (max-width: 980px) {
  .compass-section .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .difference-section .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero h1,
  .contact-hero h1,
  .quote-builder h2,
  .cta h2 {
    font-size: clamp(1.85rem, 9vw, 2.65rem) !important;
  }

  .section-heading h2,
  .seo-focus-panel h2,
  .service-link-grid .section-heading h2,
  .regular-pricing .section-heading h2,
  .difference-section h2,
  .compass-section h2 {
    font-size: clamp(1.55rem, 7vw, 2.2rem) !important;
  }

  .compass-section .timeline {
    grid-template-columns: 1fr;
  }
}

/* Mobile stability and portfolio motion - 2026-08-01 */
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body,
main,
.site-header,
.section-pad,
.hero,
.hero-copy,
.hero-visual,
.page-hero,
.portfolio-tile-grid,
.pricing-grid,
.feature-grid,
.seo-service-grid,
.process-grid {
  max-width: 100%;
}

.hero {
  overflow: hidden;
  grid-template-columns: minmax(360px, 0.92fr) minmax(460px, 1.08fr);
}

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

.hero-copy h1 {
  max-width: 760px !important;
  font-size: clamp(2.15rem, 3.35vw, 3.35rem) !important;
  line-height: 1.14 !important;
  font-weight: 580 !important;
  letter-spacing: -0.018em !important;
  text-wrap: balance;
}

.hero-text {
  max-width: 660px;
}

.portfolio-tile {
  position: relative;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.portfolio-tile::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(243, 212, 134, 0.26), transparent 32%),
    linear-gradient(135deg, rgba(243, 212, 134, 0.2), transparent 44%, rgba(215, 173, 76, 0.18));
  transition: opacity 0.28s ease;
}

.portfolio-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(110deg, transparent 16%, rgba(255, 255, 255, 0.14) 36%, transparent 56%);
  transform: translateX(-120%);
}

.portfolio-tile:hover,
.portfolio-tile:focus-within {
  transform: translateY(-8px);
  border-color: rgba(243, 212, 134, 0.72);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(243, 212, 134, 0.1);
}

.portfolio-tile:hover::before,
.portfolio-tile:focus-within::before {
  opacity: 1;
}

.portfolio-tile:hover::after,
.portfolio-tile:focus-within::after {
  opacity: 1;
  animation: tileSweep 0.9s ease forwards;
}

.portfolio-tile-media img {
  transition: transform 0.36s ease, filter 0.36s ease;
}

.portfolio-tile:hover .portfolio-tile-media img,
.portfolio-tile:focus-within .portfolio-tile-media img {
  transform: scale(1.045);
  filter: drop-shadow(0 16px 28px rgba(243, 212, 134, 0.18));
}

@keyframes tileSweep {
  to {
    transform: translateX(120%);
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-copy h1 {
    max-width: 860px !important;
    font-size: clamp(2rem, 6vw, 3rem) !important;
  }
}

@media (max-width: 760px) {
  html,
  body {
    min-width: 0;
  }

  .section-pad {
    width: calc(100% - 28px) !important;
    padding-left: 0;
    padding-right: 0;
  }

  .site-header {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
    margin-top: 10px;
    padding: 8px;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 62px);
    gap: 10px;
  }

  .brand img {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .brand span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(1rem, 4.8vw, 1.2rem);
  }

  .nav-toggle {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin-left: auto;
  }

  .hero {
    width: calc(100% - 28px) !important;
    padding-top: 42px;
    padding-bottom: 22px;
  }

  .hero-copy h1 {
    max-width: 100% !important;
    font-size: clamp(2rem, 8.4vw, 2.75rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.01em !important;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 12px;
    white-space: normal;
    text-align: center;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stats span {
    min-width: 0;
    padding: 14px 16px;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-height: 330px !important;
    overflow: hidden;
    align-self: auto;
  }

  .solar-system {
    inset: 4% -8% 8% -8%;
  }

  .orbital {
    left: 50% !important;
    right: auto !important;
    width: min(270px, 72vw) !important;
    transform: translateX(-50%) !important;
    animation: none !important;
  }

  .device-stack {
    max-width: 100%;
    transform: none;
  }

  .browser-window {
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 340px);
    min-height: 210px;
  }

  .tablet-window {
    width: 160px;
    height: 110px;
    right: 4%;
    bottom: 8%;
  }

  .phone-window {
    width: 96px;
    min-height: 168px;
    right: 0;
    bottom: 6%;
  }

  .portfolio-tile:hover,
  .portfolio-tile:focus-within {
    transform: translateY(-4px);
  }
}

@media (max-width: 520px) {
  .section-pad,
  .hero,
  .portfolio-tile-grid {
    width: calc(100% - 24px) !important;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 7.8vw, 2.35rem) !important;
    line-height: 1.14 !important;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr !important;
  }

  .hero-visual {
    min-height: 300px !important;
  }

  .orbital {
    width: min(235px, 68vw) !important;
  }

  .browser-window {
    width: min(94%, 310px);
    min-height: 190px;
  }

  .tablet-window,
  .phone-window {
    display: none;
  }

  .portfolio-tile-grid {
    gap: 20px;
  }
}

@media (hover: none) {
  .portfolio-tile:active {
    transform: translateY(-3px) scale(0.995);
  }
}

/* Portfolio homepage album and softer gold typography - 2026-08-01 */
.homepage-album {
  padding-top: clamp(22px, 4vw, 50px);
}

.homepage-album .section-heading {
  margin-bottom: clamp(18px, 3vw, 30px);
}

.homepage-album-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.homepage-album-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(243, 212, 134, 0.22);
  border-radius: 16px;
  background: linear-gradient(180deg, #05090e, #03070b);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.homepage-album-shot {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(243, 212, 134, 0.16);
}

.homepage-album-shot::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 14px;
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 5px 5px, var(--gold-2) 0 3px, transparent 3.5px),
    radial-gradient(circle at 20px 5px, rgba(243, 212, 134, 0.55) 0 3px, transparent 3.5px),
    radial-gradient(circle at 35px 5px, rgba(255, 255, 255, 0.22) 0 3px, transparent 3.5px);
  opacity: 0.8;
}

.homepage-album-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.14) 42%, transparent 62%);
  transform: translateX(-120%);
  opacity: 0;
}

.homepage-album-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.homepage-album-body {
  padding: 20px 22px 22px;
}

.homepage-album-kicker {
  margin: 0 0 8px;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.homepage-album-body h3 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  font-weight: 540;
  line-height: 1.1;
  letter-spacing: -0.012em;
}

.homepage-album-body span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

@media (hover: hover) {
  .homepage-album-card:hover,
  .homepage-album-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(243, 212, 134, 0.56);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(243, 212, 134, 0.08);
  }

  .homepage-album-card:hover img,
  .homepage-album-card:focus-within img {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.03);
  }

  .homepage-album-card:hover .homepage-album-shot::after,
  .homepage-album-card:focus-within .homepage-album-shot::after {
    opacity: 1;
    animation: tileSweep 0.8s ease forwards;
  }
}

.eyebrow,
.service-card span,
.seo-service-card span,
.addon-card span,
.addon-card a,
.timeline article span,
.portfolio-tile-kicker,
.portfolio-tile-meta,
.portfolio-tile-meta span,
.homepage-album-kicker,
.price-card .package-tag,
.price-card > span,
.package-details summary,
.footer-links h3,
.footer-contact h3,
.social-link,
.site-nav a strong,
.brand strong {
  font-weight: 500 !important;
}

.service-card a,
.seo-service-card a,
.addon-card a,
.feature-card a,
.value-card a,
.client-link,
.portfolio-tile-button,
.package-details summary,
.price-card summary,
.btn,
button,
.price-card .btn,
.package-card .btn,
.quote-builder .btn,
.service-sidebar .btn,
.limited-offer-banner .btn {
  font-weight: 500 !important;
}

@media (max-width: 760px) {
  .homepage-album-grid {
    grid-template-columns: 1fr;
  }

  .homepage-album-shot {
    aspect-ratio: 16 / 11;
  }

  .homepage-album-body {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homepage-album-card,
  .homepage-album-shot img {
    transition: none !important;
  }

  .homepage-album-shot::after {
    display: none;
  }
}
/* Mobile stability, fullscreen nav, and portfolio grid patch - 2026-08-02 */
html {
  min-height: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  background: #050b12;
}

body {
  min-height: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(243, 212, 134, 0.08), transparent 28rem),
    linear-gradient(120deg, #050b12 0%, #07111c 54%, #0b1b2a 100%) !important;
}

.starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100dvh;
  pointer-events: none;
}

.portfolio-tile-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.portfolio-tile {
  transform: translateZ(0);
}

.portfolio-tile-media {
  aspect-ratio: 1 / 0.86;
  min-height: 230px;
}

.portfolio-tile-media img {
  width: min(62%, 190px) !important;
  height: min(62%, 190px) !important;
  object-fit: contain !important;
  border-radius: 16px;
}

.portfolio-tile-body {
  min-height: 290px;
}

@media (hover: hover) {
  .portfolio-tile {
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  }

  .portfolio-tile:hover,
  .portfolio-tile:focus-within {
    transform: translateY(-6px);
    border-color: rgba(243, 212, 134, 0.56);
    box-shadow: 0 34px 88px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(243, 212, 134, 0.08);
  }

  .portfolio-tile:hover .portfolio-tile-media img,
  .portfolio-tile:focus-within .portfolio-tile-media img {
    transform: scale(1.04);
  }
}

@media (max-width: 1240px) {
  .portfolio-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

  .site-header {
    position: sticky;
    top: max(10px, env(safe-area-inset-top));
    z-index: 1001;
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
    margin-inline: auto !important;
  }

  .nav-toggle {
    position: relative;
    z-index: 1003;
  }

  .site-nav {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1002;
    display: flex !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    padding: calc(env(safe-area-inset-top) + 104px) 20px calc(env(safe-area-inset-bottom) + 26px) !important;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    border: 0 !important;
    border-radius: 0 !important;
    background: rgba(3, 8, 13, 0.98) !important;
    box-shadow: none !important;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-105%);
    transition: opacity 0.2s ease, transform 0.2s ease;
    visibility: hidden;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    width: 100%;
    min-height: 56px;
    justify-content: flex-start;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    font-size: 1.05rem;
  }

  .section-pad,
  .page-hero,
  .hero,
  .homepage-album,
  .portfolio-tile-grid {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section-pad,
  .page-hero {
    padding-top: clamp(40px, 11vw, 60px);
    padding-bottom: clamp(40px, 11vw, 60px);
  }

  .hero-copy,
  .section-heading,
  .page-hero > div,
  .instant-direction,
  .cta {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-copy h1,
  .page-hero h1,
  .section-heading h2,
  .instant-direction h2,
  .cta h2 {
    overflow-wrap: anywhere;
  }

  .hero-visual,
  .device-stack,
  .solar-system {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-visual {
    min-height: 270px !important;
  }

  .orbital {
    width: min(225px, 64vw) !important;
  }

  .browser-window {
    max-width: calc(100vw - 56px);
  }

  .portfolio-tile-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .portfolio-tile-media {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .portfolio-tile-media img {
    width: min(56%, 168px) !important;
    height: min(56%, 168px) !important;
  }

  .portfolio-tile-body {
    min-height: 0;
    padding: 22px;
  }
}

@supports (-webkit-touch-callout: none) {
  html,
  body {
    background-color: #050b12 !important;
  }

  body {
    min-height: -webkit-fill-available;
  }
}

/* Mobile menu visibility fix - 2026-08-02
   Keeps the brand bar visible and moves the menu onto a true viewport layer on iOS. */
@media (max-width: 760px) {
  body.nav-open {
    overflow: hidden !important;
    background: #07111c !important;
  }

  .site-header {
    position: sticky !important;
    top: max(10px, env(safe-area-inset-top)) !important;
    z-index: 10000 !important;
    overflow: visible !important;
    transform: none !important;
    contain: none !important;
  }

  body.nav-open .site-header {
    position: fixed !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .site-header .brand,
  .site-header .nav-toggle {
    position: relative !important;
    z-index: 10002 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .site-nav {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: 100vw !important;
    min-width: 100vw !important;
    height: 100vh !important;
    height: 100svh !important;
    height: 100dvh !important;
    margin: 0 !important;
    padding: calc(env(safe-area-inset-top) + 106px) 18px calc(env(safe-area-inset-bottom) + 24px) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: linear-gradient(180deg, rgba(3, 8, 13, 0.99), rgba(7, 17, 28, 0.99)) !important;
    box-shadow: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate3d(0, -12px, 0) !important;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease !important;
    visibility: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .site-nav.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) !important;
    visibility: visible !important;
  }

  .site-nav a {
    width: 100% !important;
    min-height: 58px !important;
    padding: 16px 18px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
  }
}

/* Portfolio final grid and image correction - 2026-08-02 */
.portfolio-tile-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2vw, 24px) !important;
  align-items: stretch !important;
}

.portfolio-tile {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100% !important;
}

.portfolio-tile-media {
  display: grid !important;
  place-items: center !important;
  aspect-ratio: 4 / 3 !important;
  min-height: 250px !important;
  padding: clamp(28px, 4vw, 56px) !important;
  background: #000 !important;
  border-radius: 12px 12px 0 0 !important;
}

.portfolio-tile-media img {
  width: min(88%, 292px) !important;
  height: min(88%, 292px) !important;
  max-width: 292px !important;
  max-height: 292px !important;
  object-fit: contain !important;
  border-radius: 12px !important;
}

.portfolio-tile-body {
  flex: 1 1 auto !important;
  min-height: 260px !important;
}

.portfolio-tile-button {
  margin-top: auto !important;
}

.homepage-album-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(12px, 1.4vw, 18px) !important;
}

.homepage-album-card {
  border-radius: 12px !important;
}

.homepage-album-shot {
  aspect-ratio: 16 / 9 !important;
}

.homepage-album-shot img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.homepage-album-qrafts-preview.is-logo-fallback {
  padding: clamp(24px, 4vw, 44px) !important;
  object-fit: contain !important;
  background: #000 !important;
}

.homepage-album-body {
  padding: 16px 18px 18px !important;
}

.homepage-album-body h3 {
  font-size: clamp(1.1rem, 1.45vw, 1.45rem) !important;
  font-weight: 520 !important;
}

.homepage-album-body span {
  font-size: 0.92rem !important;
}

@media (max-width: 1180px) {
  .homepage-album-grid,
  .portfolio-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .homepage-album-grid,
  .portfolio-tile-grid {
    grid-template-columns: 1fr !important;
  }

  .portfolio-tile-media {
    aspect-ratio: 16 / 10 !important;
    min-height: 210px !important;
    padding: 26px !important;
  }

  .portfolio-tile-media img {
    width: min(78%, 230px) !important;
    height: min(78%, 230px) !important;
  }

  .portfolio-tile-body {
    min-height: 0 !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .homepage-album-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .homepage-album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile CTA breathing room fix - 2026-08-02 */
@media (max-width: 760px) {
  .cta.section-pad,
  .section-pad.cta {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: clamp(28px, 7vw, 38px) clamp(18px, 5.8vw, 26px) !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }

  .cta .eyebrow {
    margin-bottom: 16px !important;
  }

  .cta h2 {
    max-width: 100% !important;
    margin-bottom: 24px !important;
    font-size: clamp(1.85rem, 8.4vw, 2.5rem) !important;
    line-height: 1.12 !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .cta .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 10px !important;
  }

  .cta .hero-actions .btn {
    width: 100% !important;
    min-height: 52px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

@media (max-width: 420px) {
  .cta.section-pad,
  .section-pad.cta {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

/* Mobile hero artwork, marquee, and instant direction polish - 2026-08-02 */
@keyframes marqueeMobileRoll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    background: #07111c;
  }

  .hero {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .hero-visual {
    width: calc(100% - 28px) !important;
    max-width: 420px !important;
    min-height: 360px !important;
    margin: 26px auto 0 !important;
    padding: 16px 10px 22px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .hero-visual .orbital {
    top: 4px !important;
    left: 50% !important;
    right: auto !important;
    width: min(260px, 68vw) !important;
    transform: translateX(-50%) !important;
  }

  .hero-visual .solar-system {
    inset: 0 !important;
  }

  .hero-visual .device-stack {
    left: 50% !important;
    right: auto !important;
    bottom: 16px !important;
    width: min(330px, 88vw) !important;
    transform: translateX(-50%) !important;
    overflow: visible !important;
  }

  .hero-visual .browser-window {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 190px !important;
    margin: 0 auto !important;
    padding: 12px !important;
    transform: none !important;
  }

  .hero-visual .browser-top {
    margin-bottom: 16px !important;
  }

  .hero-visual .browser-content {
    padding: 14px !important;
  }

  .hero-visual .browser-content p {
    max-width: 100% !important;
    font-size: clamp(1.3rem, 7.2vw, 2rem) !important;
    line-height: 1.05 !important;
  }

  .hero-visual .mock-grid span {
    height: 48px !important;
  }

  .hero-visual .tablet-window,
  .hero-visual .phone-window {
    display: none !important;
  }

  .marquee {
    width: 100% !important;
    overflow: hidden !important;
  }

  .marquee-track {
    width: max-content !important;
    min-width: max-content !important;
    gap: 0 !important;
    padding: 16px 0 !important;
    will-change: transform;
    animation: marqueeMobileRoll 18s linear infinite !important;
  }

  .marquee span {
    min-width: auto !important;
    padding: 0 34px !important;
    white-space: nowrap !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em !important;
  }

  .instant-direction {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: clamp(26px, 7vw, 36px) clamp(18px, 5.8vw, 26px) !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }

  .instant-direction .eyebrow {
    margin-bottom: 14px !important;
  }

  .instant-direction h2 {
    margin-bottom: 18px !important;
    font-size: clamp(1.85rem, 8.2vw, 2.45rem) !important;
    line-height: 1.12 !important;
  }

  .instant-direction p {
    max-width: 100% !important;
    margin-bottom: 26px !important;
    line-height: 1.55 !important;
  }

  .instant-direction .btn {
    width: 100% !important;
    min-height: 52px !important;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .hero-visual,
  .instant-direction {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
  }

  .hero-visual {
    min-height: 340px !important;
  }

  .hero-visual .orbital {
    width: min(238px, 66vw) !important;
  }
}

/* Mobile ticker and selected path padding fix - 2026-08-02 */
@keyframes marqueeMobileTightRoll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 760px) {
  .marquee {
    display: block !important;
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    overflow: hidden !important;
  }

  .marquee-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    width: max-content !important;
    min-width: max-content !important;
    gap: 0 !important;
    padding: 16px 0 !important;
    transform: translate3d(0, 0, 0);
    animation: marqueeMobileTightRoll 15s linear infinite !important;
    will-change: transform;
  }

  .marquee span {
    flex: 0 0 auto !important;
    min-width: max-content !important;
    padding: 0 24px !important;
    font-size: clamp(0.68rem, 2.8vw, 0.78rem) !important;
    font-weight: 500 !important;
    letter-spacing: 0.13em !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .instant-direction {
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    margin: clamp(46px, 12vw, 70px) auto !important;
    padding: clamp(34px, 8vw, 46px) clamp(24px, 7vw, 34px) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .instant-direction .eyebrow,
  .instant-direction h2,
  .instant-direction p,
  .instant-direction .btn {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .instant-direction h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.25rem) !important;
    line-height: 1.12 !important;
  }

  .instant-direction p {
    line-height: 1.6 !important;
  }

  .instant-direction .btn {
    max-width: 100% !important;
    width: 100% !important;
  }
}

@media (max-width: 420px) {
  .instant-direction {
    width: calc(100% - 30px) !important;
    max-width: calc(100% - 30px) !important;
    padding: 34px 22px !important;
  }

  .marquee span {
    padding: 0 22px !important;
  }
}

/* Mobile packages selected path and FAQ breathing room - 2026-08-02 */
@media (max-width: 760px) {
  .packages-page .instant-direction,
  main .instant-direction {
    width: calc(100% - 36px) !important;
    max-width: calc(100% - 36px) !important;
    padding: 38px 26px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .packages-page .instant-direction .eyebrow,
  main .instant-direction .eyebrow {
    display: block !important;
    max-width: 100% !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
  }

  .packages-page .instant-direction h2,
  main .instant-direction h2 {
    max-width: 100% !important;
    font-size: clamp(1.65rem, 7vw, 2.15rem) !important;
  }

  .packages-page .instant-direction p,
  main .instant-direction p {
    max-width: 100% !important;
    font-size: clamp(0.98rem, 4vw, 1.08rem) !important;
  }

  .section-pad.faq,
  .faq.section-pad {
    width: calc(100% - 36px) !important;
    max-width: calc(100% - 36px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .faq .section-heading,
  .faq details {
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
  }

  .faq details summary {
    line-height: 1.22 !important;
  }
}

@media (max-width: 420px) {
  .packages-page .instant-direction,
  main .instant-direction,
  .section-pad.faq,
  .faq.section-pad {
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
  }

  .packages-page .instant-direction,
  main .instant-direction {
    padding: 36px 24px !important;
  }

  .faq .section-heading,
  .faq details {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}

/* Direct mobile padding for packages selected path - 2026-08-02 */
@media (max-width: 760px) {
  body .quote-builder.section-pad,
  body section.quote-builder {
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    margin: clamp(46px, 12vw, 68px) auto !important;
    padding: 36px 24px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  body .quote-builder.section-pad > *,
  body section.quote-builder > * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body .quote-builder .eyebrow,
  body .quote-builder h2,
  body .quote-builder p,
  body .quote-builder .btn {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body .quote-builder h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem) !important;
    line-height: 1.12 !important;
    margin-bottom: 18px !important;
  }

  body .quote-builder p:not(.eyebrow) {
    font-size: clamp(1rem, 4.1vw, 1.1rem) !important;
    line-height: 1.58 !important;
    margin-bottom: 28px !important;
  }

  body .quote-builder .btn {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 54px !important;
  }
}

@media (max-width: 420px) {
  body .quote-builder.section-pad,
  body section.quote-builder {
    width: calc(100% - 30px) !important;
    max-width: calc(100% - 30px) !important;
    padding: 38px 24px !important;
  }
}

/* Large mobile and tablet scroll stability - 2026-08-02 */
@media (hover: none), (pointer: coarse), (max-width: 1024px) {
  html,
  body {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior-y: auto !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body.nav-open {
    overflow: hidden !important;
    touch-action: none !important;
  }

  main,
  .page-shell,
  .section-pad,
  .page-hero,
  .hero,
  .site-footer,
  .portfolio-tile,
  .homepage-album-card,
  .package-card,
  .service-card,
  .faq details,
  .quote-builder,
  .instant-direction,
  .cta {
    touch-action: pan-y !important;
  }

  .site-nav.is-open,
  .site-nav.is-open * {
    touch-action: auto !important;
  }

  .cursor-glow,
  .meteor-layer,
  .starfield,
  body::before,
  body::after {
    pointer-events: none !important;
    touch-action: none !important;
  }
}
/* Wide desktop layout pass - use more of large screens without touching mobile. */
@media (min-width: 1181px) {
  :root {
    --wide-shell: min(1680px, calc(100% - clamp(80px, 8vw, 160px)));
  }

  .site-header,
  .section-pad,
  .hero,
  .page-hero,
  .portfolio-tile-grid,
  .homepage-album,
  .pricing-grid,
  .feature-grid,
  .seo-service-grid,
  .process-grid,
  .service-link-grid,
  .quote-builder,
  .instant-direction,
  .faq,
  .cta,
  .site-footer {
    width: var(--wide-shell) !important;
    max-width: var(--wide-shell) !important;
  }

  .site-header {
    margin-inline: auto !important;
  }

  .hero {
    grid-template-columns: minmax(500px, 0.92fr) minmax(600px, 1.08fr) !important;
    gap: clamp(44px, 4vw, 82px) !important;
  }

  .hero-copy h1,
  .hero-content h1 {
    max-width: 880px !important;
  }

  .hero-text {
    max-width: 760px !important;
  }

}

@media (min-width: 1320px) {
  .homepage-album-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .portfolio-tile-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1500px) {
  .page-hero h1,
  .contact-hero h1,
  .quote-builder h2,
  .cta h2,
  .section-heading h2 {
    max-width: min(1320px, 100%) !important;
  }
}
/* Balanced desktop hero artwork cap. */
@media (min-width: 1181px) {
  .hero-visual {
    max-width: 860px !important;
    justify-self: end;
  }
}
