:root {
  --ink: #050403;
  --ink-soft: #0d0c0a;
  --panel: rgba(42, 38, 30, 0.82);
  --panel-solid: #302a20;
  --paper: #f7f3ea;
  --paper-soft: #e8ddca;
  --surface: #fbf8f0;
  --surface-soft: #f0e7d8;
  --surface-card: #fffdf8;
  --text-dark: #17130c;
  --text-soft: #5f574b;
  --heading-bright: #fff8ec;
  --heading-shadow: 0 12px 26px rgba(0, 0, 0, 0.72), 0 2px 8px rgba(0, 0, 0, 0.84);
  --gold-deep: #9c742d;
  --muted: #b9ae9c;
  --gold: #d5ab56;
  --gold-strong: #f2d27a;
  --cyan: #65d8ff;
  --rose: #f1a6a1;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(10, 8, 4, 0.12);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
  --max: 1180px;
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(213, 171, 86, 0.12), transparent 28rem),
    linear-gradient(180deg, #060504 0%, #0e0c09 46%, #060504 100%);
  color: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 74%);
}

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

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

p {
  margin: 0 0 1.05rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading-bright);
  line-height: 1.04;
  font-weight: 760;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: 4.4rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.3rem;
}

.nowrap {
  white-space: nowrap;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  padding: 0.7rem 1rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  padding: 0.8rem 1rem;
  pointer-events: none;
}

.nav-shell {
  position: relative;
  width: min(var(--max), calc(100% - 1.5rem));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.55rem 0.95rem 0.55rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(4, 4, 3, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(150%);
  pointer-events: auto;
}

.nav-shell::before {
  position: absolute;
  inset: 1px;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.18) 44%, transparent 56%),
    radial-gradient(circle at 18% 0%, rgba(213, 171, 86, 0.2), transparent 18rem);
  opacity: 0.36;
  transform: translateX(-38%);
  animation: nav-glint 9s ease-in-out infinite;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 145px;
  height: auto;
}

.nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
}

.nav-links a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-divider {
  width: 1px;
  height: 42px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.18);
}

.nav-boost {
  gap: 0.45rem;
  color: var(--gold-strong) !important;
}

.nav-contact {
  padding-inline: 1.25rem !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 2px;
}

.hero,
.page-hero {
  position: relative;
  min-height: 88vh;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 9rem 1.2rem 4rem;
}

.page-hero {
  min-height: 62vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-position: center;
  background-size: cover;
  opacity: 0.72;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  will-change: transform;
}

.hero-home .hero-bg {
  animation: hero-bg-drift 18s ease-in-out infinite alternate;
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.38) 42%, rgba(5, 4, 3, 0.94) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.76));
}

.hero-home::after {
  position: absolute;
  inset: 16% 13% 12%;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.74) 22%, rgba(0, 0, 0, 0.82) 50%, rgba(0, 0, 0, 0.74) 78%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 26%, rgba(0, 0, 0, 0.76) 72%, transparent 100%);
  filter: blur(12px);
  opacity: 0.96;
}

.hero-collage {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  opacity: 0.66;
  perspective: 1200px;
}

.reel-tile {
  position: absolute;
  width: 270px;
  aspect-ratio: 9 / 16;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  translate: 0 0;
  will-change: transform;
  animation: reel-tile-float 8s ease-in-out infinite;
}

.reel-tile::before,
.reel-tile::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.reel-tile::before {
  top: 1rem;
  right: 1rem;
  width: 0.42rem;
  height: 5.2rem;
  border-radius: 999px;
  background:
    linear-gradient(var(--gold-strong), var(--gold-strong)) top / 100% 34% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.68)) center / 100% 20% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.42)) bottom / 100% 14% no-repeat;
  filter: drop-shadow(0 0 16px rgba(242, 210, 122, 0.36));
  opacity: 0.76;
  animation: reel-ui-pulse 3.8s ease-in-out infinite;
}

.reel-tile::after {
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  height: 0.26rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-strong), rgba(101, 216, 255, 0.48));
  transform: scaleX(0.28);
  transform-origin: left;
  opacity: 0.74;
  animation: reel-progress-loop 4.6s ease-in-out infinite;
}

.reel-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: reel-image-loop 9s ease-in-out infinite alternate;
}

.tile-a {
  top: 23%;
  left: clamp(-1rem, 3vw, 3.2rem);
  rotate: -4deg;
  animation-duration: 8.8s;
}

.tile-b {
  top: 7%;
  right: 23%;
  width: 250px;
  rotate: 3deg;
  animation-duration: 10.4s;
  animation-delay: -2s;
}

.tile-c {
  top: 18%;
  right: clamp(-1rem, 4vw, 4.4rem);
  width: 285px;
  rotate: 2deg;
  animation-duration: 9.6s;
  animation-delay: -4s;
}

.tile-d {
  bottom: -3%;
  left: 25%;
  width: 260px;
  rotate: 5deg;
  animation-duration: 11.2s;
  animation-delay: -1s;
}

.hero-motion-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-motion-layer::before {
  position: absolute;
  inset: -12% auto -12% -18%;
  width: 48%;
  content: "";
  background: linear-gradient(
    105deg,
    transparent 0 38%,
    rgba(255, 246, 218, 0.06) 44%,
    rgba(242, 210, 122, 0.19) 49%,
    rgba(101, 216, 255, 0.07) 54%,
    transparent 62%
  );
  filter: blur(8px);
  transform: translateX(-120%) skewX(-8deg);
  animation: hero-light-sweep 8.8s ease-in-out infinite;
}

.hero-motion-layer::after {
  position: absolute;
  inset: 12% 7% 10%;
  content: "";
  background:
    radial-gradient(circle at 22% 68%, rgba(101, 216, 255, 0.08), transparent 18rem),
    radial-gradient(circle at 77% 28%, rgba(213, 171, 86, 0.18), transparent 24rem);
  opacity: 0.72;
  animation: hero-ambient-pulse 7.5s ease-in-out infinite;
}

.hero-depth-lines {
  position: absolute;
  inset: 8% 0 6%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse at 50% 45%, rgba(0, 0, 0, 0.72), transparent 70%);
  opacity: 0.52;
  animation: hero-grid-drift 12s linear infinite;
}

.hero-orbit {
  position: absolute;
  top: 51%;
  left: 50%;
  width: min(780px, 62vw);
  aspect-ratio: 1;
  border: 1px solid rgba(213, 171, 86, 0.18);
  border-radius: 50%;
  opacity: 0.58;
  transform: translate(-50%, -50%);
  animation: hero-orbit-turn 26s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  inset: 16%;
  content: "";
  border: 1px solid rgba(101, 216, 255, 0.08);
  border-radius: inherit;
}

.hero-orbit::after {
  inset: 33%;
  border-color: rgba(213, 171, 86, 0.14);
}

.hero-orbit span {
  position: absolute;
  width: 0.58rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--gold-strong);
  box-shadow: 0 0 26px rgba(242, 210, 122, 0.62);
}

.hero-orbit span:nth-child(1) {
  top: 7%;
  left: 47%;
}

.hero-orbit span:nth-child(2) {
  top: 52%;
  right: 2%;
}

.hero-orbit span:nth-child(3) {
  bottom: 12%;
  left: 22%;
}

.hero-signal-beam {
  position: absolute;
  height: 1px;
  width: min(520px, 34vw);
  background: linear-gradient(90deg, transparent, rgba(242, 210, 122, 0.54), transparent);
  opacity: 0.42;
  animation: hero-beam-slide 6.5s ease-in-out infinite;
}

.hero-signal-beam span {
  position: absolute;
  top: -3px;
  width: 42%;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(101, 216, 255, 0.34), transparent);
  filter: blur(1px);
  animation: hero-beam-pulse 3.8s ease-in-out infinite;
}

.beam-a {
  top: 29%;
  left: 7%;
  rotate: -7deg;
}

.beam-b {
  right: 8%;
  bottom: 25%;
  rotate: 6deg;
  animation-delay: -2.4s;
}

.hero-glass-frame {
  position: absolute;
  width: min(260px, 18vw);
  min-width: 150px;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px) saturate(140%);
  opacity: 0.5;
  animation: hero-frame-float 7.2s ease-in-out infinite;
}

.hero-glass-frame span {
  position: absolute;
  left: 12%;
  height: 3px;
  border-radius: 999px;
  background: rgba(242, 210, 122, 0.54);
  animation: hero-frame-bars 4.2s ease-in-out infinite;
}

.hero-glass-frame span:nth-child(1) {
  top: 28%;
  width: 38%;
}

.hero-glass-frame span:nth-child(2) {
  top: 48%;
  width: 64%;
  animation-delay: -1.1s;
}

.hero-glass-frame span:nth-child(3) {
  top: 68%;
  width: 48%;
  animation-delay: -2s;
}

.frame-a {
  top: 17%;
  left: 16%;
}

.frame-b {
  right: 17%;
  bottom: 13%;
  animation-delay: -3.2s;
}

.page-hero-services {
  min-height: 70vh;
  background: #050403;
}

.page-hero-services .page-hero-inner {
  width: min(1120px, 100%);
  max-width: 1120px;
}

.page-hero-services h1 {
  max-width: 1120px;
  margin-inline: auto;
  font-size: 4.05rem;
}

.page-hero-services::before {
  background:
    radial-gradient(ellipse at 50% 52%, rgba(5, 4, 3, 0.52) 0%, rgba(5, 4, 3, 0.82) 46%, rgba(5, 4, 3, 0.96) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.78)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(5, 4, 3, 0.9));
}

.services-hero-bg {
  opacity: 0.5;
  filter: saturate(0.88) brightness(0.78);
  animation: services-bg-shift 16s ease-in-out infinite alternate;
}

.services-hero-production {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.services-hero-production::before {
  position: absolute;
  inset: 12% 0 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.66) 22%, rgba(0, 0, 0, 0.66) 78%, transparent);
  opacity: 0.44;
  transform: perspective(900px) rotateX(58deg) translateY(14%);
  transform-origin: 50% 78%;
  animation: services-grid-roll 10s linear infinite;
}

.services-hero-production::after {
  position: absolute;
  inset: -12% auto -12% -16%;
  width: 42%;
  content: "";
  background: linear-gradient(
    105deg,
    transparent 0 36%,
    rgba(255, 255, 255, 0.08) 44%,
    rgba(242, 210, 122, 0.22) 49%,
    rgba(101, 216, 255, 0.1) 54%,
    transparent 64%
  );
  filter: blur(10px);
  transform: translateX(-120%) skewX(-9deg);
  animation: services-light-cut 7.6s ease-in-out infinite;
}

.service-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.42);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  translate: 0 0;
  will-change: transform;
  animation: service-shot-drift 9s ease-in-out infinite;
}

.service-shot::before,
.service-shot::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.service-shot::before {
  background:
    linear-gradient(180deg, transparent 0%, rgba(5, 4, 3, 0.46) 100%),
    radial-gradient(circle at 78% 18%, rgba(213, 171, 86, 0.22), transparent 14rem);
}

.service-shot::after {
  inset: auto 0 0;
  height: 32%;
  background:
    linear-gradient(90deg, rgba(242, 210, 122, 0.72), rgba(101, 216, 255, 0.28)) left 1rem bottom 1.08rem / 52% 4px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.24)) right 1rem bottom 1.08rem / 18% 4px no-repeat;
  opacity: 0.72;
  animation: service-shot-progress 4.8s ease-in-out infinite;
}

.service-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.9);
  transform: scale(1.04);
  animation: service-shot-zoom 9.5s ease-in-out infinite alternate;
}

.service-shot-a {
  bottom: 8%;
  left: clamp(1rem, 6vw, 7rem);
  width: clamp(180px, 18vw, 285px);
  aspect-ratio: 9 / 11;
  rotate: -6deg;
}

.service-shot-b {
  top: 18%;
  right: clamp(1rem, 7vw, 8rem);
  width: clamp(170px, 16vw, 255px);
  aspect-ratio: 9 / 12;
  rotate: 5deg;
  animation-delay: -2.6s;
}

.service-shot-c {
  top: 10%;
  left: clamp(12rem, 22vw, 25rem);
  width: clamp(130px, 12vw, 190px);
  aspect-ratio: 9 / 12;
  opacity: 0.58;
  rotate: 2deg;
  animation-delay: -4.3s;
}

.services-focus-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 54vw);
  aspect-ratio: 1;
  border: 1px solid rgba(213, 171, 86, 0.18);
  border-radius: 50%;
  opacity: 0.64;
  transform: translate(-50%, -50%);
  animation: services-focus-breathe 6.4s ease-in-out infinite;
}

.services-focus-ring::before,
.services-focus-ring::after,
.services-focus-ring span {
  position: absolute;
  content: "";
  border-radius: inherit;
}

.services-focus-ring::before {
  inset: 18%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  animation: services-focus-turn 24s linear infinite;
}

.services-focus-ring::after {
  inset: 43%;
  border: 1px solid rgba(101, 216, 255, 0.14);
}

.services-focus-ring span {
  width: 11px;
  aspect-ratio: 1;
  background: var(--gold-strong);
  box-shadow: 0 0 26px rgba(242, 210, 122, 0.68);
}

.services-focus-ring span:nth-child(1) {
  top: 16%;
  right: 20%;
}

.services-focus-ring span:nth-child(2) {
  bottom: 16%;
  left: 22%;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(101, 216, 255, 0.42);
}

.services-edit-console {
  position: absolute;
  right: max(1rem, calc((100vw - var(--max)) / 2));
  bottom: 8%;
  width: min(560px, 45vw);
  min-height: 154px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(20, 17, 12, 0.58);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px) saturate(150%);
  opacity: 0.72;
  animation: services-console-float 7.5s ease-in-out infinite;
}

.console-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.console-meta span {
  padding: 0.28rem 0.48rem;
  border: 1px solid rgba(213, 171, 86, 0.2);
  border-radius: 999px;
  color: rgba(247, 243, 234, 0.82);
  font-size: 0.72rem;
  font-weight: 760;
}

.timeline-track {
  position: relative;
  height: 42px;
  display: grid;
  grid-template-columns: 1fr 0.72fr 1.18fr 0.58fr;
  gap: 0.45rem;
  padding: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  overflow: hidden;
}

.timeline-track span {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(213, 171, 86, 0.78), rgba(101, 216, 255, 0.24));
  transform-origin: left;
  animation: services-clip-pulse 4.8s ease-in-out infinite;
}

.timeline-track span:nth-child(2) {
  animation-delay: -1s;
}

.timeline-track span:nth-child(3) {
  animation-delay: -2.1s;
}

.timeline-track span:nth-child(4) {
  animation-delay: -3.2s;
}

.audio-wave {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-inline: 0.55rem;
}

.audio-wave span {
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: rgba(247, 243, 234, 0.52);
  animation: services-wave 1.35s ease-in-out infinite;
}

.audio-wave span:nth-child(2) {
  animation-delay: -0.16s;
}

.audio-wave span:nth-child(3) {
  animation-delay: -0.32s;
}

.audio-wave span:nth-child(4) {
  animation-delay: -0.48s;
}

.audio-wave span:nth-child(5) {
  animation-delay: -0.64s;
}

.audio-wave span:nth-child(6) {
  animation-delay: -0.8s;
}

.edit-playhead {
  position: absolute;
  top: 3.2rem;
  bottom: 1rem;
  left: 18%;
  width: 2px;
  border-radius: 999px;
  background: var(--gold-strong);
  box-shadow: 0 0 22px rgba(242, 210, 122, 0.72);
  animation: services-playhead 5.6s ease-in-out infinite;
}

.services-scanline {
  position: absolute;
  top: 26%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(101, 216, 255, 0.34), rgba(242, 210, 122, 0.42), transparent);
  opacity: 0;
  animation: services-scan 5.8s ease-in-out infinite;
}

.page-hero-marketing {
  min-height: 76vh;
  background: #070604;
  padding-bottom: 7rem;
}

.page-hero-marketing::before {
  background:
    radial-gradient(ellipse at 50% 52%, rgba(5, 4, 3, 0.36) 0%, rgba(5, 4, 3, 0.72) 46%, rgba(5, 4, 3, 0.96) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.74)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(5, 4, 3, 0.92));
}

.page-hero-marketing::after {
  position: absolute;
  inset: 18% 12% 19%;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42) 42%, transparent 72%),
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.68) 34%, rgba(0, 0, 0, 0.68) 66%, transparent);
  filter: blur(12px);
}

.marketing-hero-bg {
  opacity: 0.42;
  filter: saturate(0.86) brightness(0.76);
  animation: marketing-bg-drift 17s ease-in-out infinite alternate;
}

.marketing-hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.marketing-depth-grid {
  position: absolute;
  inset: 12% 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.74) 18%, rgba(0, 0, 0, 0.74) 82%, transparent);
  opacity: 0.46;
  transform: perspective(900px) rotateX(58deg) translateY(18%);
  transform-origin: 50% 78%;
  animation: marketing-grid-roll 13s linear infinite;
}

.marketing-depth-grid::after {
  position: absolute;
  inset: -15% auto -15% -18%;
  width: 44%;
  content: "";
  background: linear-gradient(
    105deg,
    transparent 0 34%,
    rgba(255, 255, 255, 0.08) 43%,
    rgba(242, 210, 122, 0.2) 49%,
    rgba(101, 216, 255, 0.12) 56%,
    transparent 66%
  );
  filter: blur(10px);
  transform: translateX(-120%) skewX(-8deg);
  animation: marketing-light-sweep 8.4s ease-in-out infinite;
}

.marketing-hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  aspect-ratio: 970 / 595;
  opacity: 0.74;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  translate: 0 0;
  will-change: transform;
  animation: marketing-card-float 8.6s ease-in-out infinite;
}

.marketing-hero-card::before,
.marketing-hero-card::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.marketing-hero-card::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.06) 0%, rgba(5, 4, 3, 0.18) 46%, rgba(5, 4, 3, 0.78) 100%),
    radial-gradient(circle at 74% 18%, rgba(242, 210, 122, 0.2), transparent 12rem);
}

.marketing-hero-card::after {
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(242, 210, 122, 0.76), rgba(101, 216, 255, 0.24)) left center / 58% 100% no-repeat,
    rgba(255, 255, 255, 0.22);
  opacity: 0.78;
  transform-origin: left;
  animation: marketing-progress 5.4s ease-in-out infinite;
}

.marketing-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.06) brightness(0.92);
  transform: scale(1.04);
  animation: marketing-image-loop 10s ease-in-out infinite alternate;
}

.marketing-hero-card figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1.75rem;
  left: 1rem;
  z-index: 3;
  color: var(--paper);
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.8);
}

.marketing-hero-card figcaption span {
  display: block;
  margin-bottom: 0.24rem;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 820;
}

.marketing-hero-card figcaption strong {
  display: block;
  max-width: 92%;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.12;
}

.marketing-card-a {
  bottom: 8%;
  left: clamp(1rem, 5vw, 6.4rem);
  width: clamp(260px, 29vw, 470px);
  rotate: -4.5deg;
}

.marketing-card-b {
  top: 14%;
  left: 50%;
  width: clamp(280px, 32vw, 520px);
  opacity: 0.58;
  rotate: 2deg;
  transform: translate3d(-50%, var(--parallax-y, 0), 0);
  animation-delay: -2.8s;
}

.marketing-card-c {
  right: clamp(1rem, 5vw, 6.4rem);
  bottom: 8%;
  width: clamp(260px, 29vw, 470px);
  rotate: 4deg;
  animation-delay: -4.4s;
}

.marketing-bubbles {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.marketing-bubbles span {
  position: absolute;
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  padding-inline: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(247, 243, 234, 0.16);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 850;
  animation: marketing-bubble-pop 4.8s ease-in-out infinite;
}

.marketing-bubbles span:nth-child(1) {
  top: 18%;
  left: 13%;
}

.marketing-bubbles span:nth-child(2) {
  top: 28%;
  right: 14%;
  animation-delay: -1.6s;
}

.marketing-bubbles span:nth-child(3) {
  right: 20%;
  bottom: 26%;
  animation-delay: -3s;
}

.marketing-signal-console {
  position: absolute;
  right: 50%;
  bottom: 4%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(560px, 46vw);
  padding: 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(20, 17, 12, 0.55);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px) saturate(150%);
  color: rgba(247, 243, 234, 0.82);
  font-size: 0.74rem;
  font-weight: 820;
  text-align: center;
  transform: translateX(50%);
  opacity: 0.76;
}

.marketing-signal-console span {
  position: relative;
  z-index: 1;
  padding: 0.45rem 0.5rem;
}

.marketing-signal-console i {
  position: absolute;
  top: 0.62rem;
  bottom: 0.62rem;
  left: 0.62rem;
  width: calc((100% - 1.24rem) / 3);
  border-radius: 999px;
  background: rgba(213, 171, 86, 0.16);
  box-shadow: inset 0 0 0 1px rgba(242, 210, 122, 0.28);
  animation: marketing-console-step 6s ease-in-out infinite;
}

.marketing-light-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(620px, 58vw);
  aspect-ratio: 1;
  border: 1px solid rgba(213, 171, 86, 0.16);
  border-radius: 50%;
  opacity: 0.62;
  transform: translate(-50%, -50%);
  animation: marketing-orbit-turn 25s linear infinite;
}

.marketing-light-orbit span {
  position: absolute;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--gold-strong);
  box-shadow: 0 0 28px rgba(242, 210, 122, 0.72);
}

.marketing-light-orbit span:nth-child(1) {
  top: 14%;
  left: 24%;
}

.marketing-light-orbit span:nth-child(2) {
  right: 13%;
  bottom: 31%;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(101, 216, 255, 0.45);
}

.marketing-light-orbit span:nth-child(3) {
  bottom: 11%;
  left: 44%;
}

.page-hero-marketing .page-hero-inner {
  max-width: 920px;
}

.page-hero-marketing .hero-actions {
  margin-top: 1.55rem;
}

.hero-content,
.page-hero-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.86), 0 2px 8px rgba(0, 0, 0, 0.92);
}

.hero h1,
.hero h2,
.hero h3,
.page-hero h1,
.page-hero h2,
.page-hero h3 {
  color: var(--heading-bright);
  text-shadow: var(--heading-shadow);
}

.hero-content.reveal,
.page-hero-inner.reveal {
  opacity: 1;
  transform: none;
}

.hero-home .hero-content.reveal {
  transform: translateY(clamp(-6rem, -7vh, -3.4rem));
}

.hero-content p {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(247, 243, 234, 0.9);
  font-size: 1.15rem;
  font-weight: 520;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--gold-strong);
  font-weight: 700;
}

.hero-kicker img {
  width: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero-signal-row {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.25rem auto 0;
}

.hero-home > .hero-signal-row {
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  left: 1rem;
  z-index: 3;
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-signal-row span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(247, 243, 234, 0.74);
  font-size: 0.88rem;
  font-weight: 720;
  backdrop-filter: blur(18px) saturate(140%);
}

.hero-handoff {
  position: relative;
  height: 92px;
  margin-top: -1px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(213, 171, 86, 0.12), transparent 24rem),
    linear-gradient(180deg, #070604 0%, var(--surface) 86%);
}

.hero-handoff span {
  position: absolute;
  top: 28px;
  left: 50%;
  width: min(560px, 62vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 171, 86, 0.42), transparent);
  transform: translateX(-50%);
}

.btn {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.15rem 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 720;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.btn::before {
  position: absolute;
  inset: -1px;
  content: "";
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.26), transparent 30%);
  opacity: 0;
  transition: opacity 180ms ease;
}

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

.btn:hover::before {
  opacity: 1;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #161006;
}

.btn-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
}

.hero .hero-actions .btn,
.page-hero .hero-actions .btn {
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none;
}

.hero .hero-actions .btn-primary,
.page-hero .hero-actions .btn-primary {
  background: var(--gold-strong);
}

.scroll-cue {
  position: absolute;
  bottom: 2.1rem;
  left: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.7rem;
  transform: translateX(-50%);
  animation: soft-bounce 1800ms ease-in-out infinite;
}

.hero-home .scroll-cue {
  bottom: 4.5rem;
}

@keyframes soft-bounce {
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes nav-glint {
  0%,
  24%,
  100% {
    opacity: 0.22;
    transform: translateX(-42%);
  }

  44% {
    opacity: 0.48;
    transform: translateX(42%);
  }

  58% {
    opacity: 0.16;
    transform: translateX(58%);
  }
}

@keyframes hero-bg-drift {
  0% {
    background-position: 48% 50%;
    filter: saturate(0.96) brightness(0.86);
  }

  100% {
    background-position: 55% 46%;
    filter: saturate(1.08) brightness(0.94);
  }
}

@keyframes reel-tile-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

@keyframes reel-image-loop {
  0% {
    transform: scale(1.03) translateY(0);
  }

  100% {
    transform: scale(1.09) translateY(-1.8%);
  }
}

@keyframes reel-ui-pulse {
  0%,
  100% {
    opacity: 0.52;
    transform: translateY(0);
  }

  50% {
    opacity: 0.92;
    transform: translateY(7px);
  }
}

@keyframes reel-progress-loop {
  0% {
    opacity: 0.24;
    transform: scaleX(0.16);
  }

  68% {
    opacity: 0.82;
    transform: scaleX(1);
  }

  100% {
    opacity: 0.3;
    transform: scaleX(0.22);
  }
}

@keyframes hero-light-sweep {
  0%,
  30%,
  100% {
    opacity: 0;
    transform: translateX(-120%) skewX(-8deg);
  }

  48% {
    opacity: 1;
  }

  68% {
    opacity: 0;
    transform: translateX(280%) skewX(-8deg);
  }
}

@keyframes hero-ambient-pulse {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.86;
  }
}

@keyframes hero-grid-drift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 96px 96px;
  }
}

@keyframes hero-orbit-turn {
  to {
    rotate: 360deg;
  }
}

@keyframes hero-beam-slide {
  0%,
  100% {
    opacity: 0.16;
    translate: -14px 0;
  }

  48% {
    opacity: 0.54;
    translate: 18px 0;
  }
}

@keyframes hero-beam-pulse {
  0%,
  100% {
    left: 0;
    opacity: 0.2;
  }

  50% {
    left: 58%;
    opacity: 0.8;
  }
}

@keyframes hero-frame-float {
  0%,
  100% {
    opacity: 0.34;
    translate: 0 0;
  }

  50% {
    opacity: 0.58;
    translate: 0 -15px;
  }
}

@keyframes hero-frame-bars {
  0%,
  100% {
    opacity: 0.32;
    transform: scaleX(0.48);
    transform-origin: left;
  }

  50% {
    opacity: 0.84;
    transform: scaleX(1);
  }
}

@keyframes services-bg-shift {
  0% {
    background-position: 46% 52%;
    filter: saturate(0.82) brightness(0.74);
  }

  100% {
    background-position: 54% 47%;
    filter: saturate(0.98) brightness(0.84);
  }
}

@keyframes services-grid-roll {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 78px 78px;
  }
}

@keyframes services-light-cut {
  0%,
  34%,
  100% {
    opacity: 0;
    transform: translateX(-120%) skewX(-9deg);
  }

  52% {
    opacity: 0.9;
  }

  72% {
    opacity: 0;
    transform: translateX(310%) skewX(-9deg);
  }
}

@keyframes service-shot-drift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -16px;
  }
}

@keyframes service-shot-progress {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.7);
    transform-origin: left;
  }

  55% {
    opacity: 0.82;
    transform: scaleX(1);
  }
}

@keyframes service-shot-zoom {
  0% {
    transform: scale(1.04) translateY(0);
  }

  100% {
    transform: scale(1.1) translateY(-2%);
  }
}

@keyframes services-focus-breathe {
  0%,
  100% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(0.96);
  }

  50% {
    opacity: 0.74;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes services-focus-turn {
  to {
    rotate: -360deg;
  }
}

@keyframes services-console-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes services-clip-pulse {
  0%,
  100% {
    opacity: 0.48;
    transform: scaleX(0.82);
  }

  50% {
    opacity: 0.92;
    transform: scaleX(1);
  }
}

@keyframes services-wave {
  0%,
  100% {
    height: 12px;
    opacity: 0.42;
  }

  50% {
    height: 36px;
    opacity: 0.82;
  }
}

@keyframes services-playhead {
  0% {
    left: 16%;
    opacity: 0.32;
  }

  54% {
    opacity: 1;
  }

  100% {
    left: 82%;
    opacity: 0.32;
  }
}

@keyframes services-scan {
  0%,
  100% {
    opacity: 0;
    transform: translateY(-76px);
  }

  42% {
    opacity: 0.8;
  }

  72% {
    opacity: 0;
    transform: translateY(210px);
  }
}

@keyframes marketing-bg-drift {
  0% {
    background-position: 47% 52%;
    filter: saturate(0.8) brightness(0.72);
  }

  100% {
    background-position: 54% 46%;
    filter: saturate(0.94) brightness(0.84);
  }
}

@keyframes marketing-grid-roll {
  to {
    background-position: 88px 88px;
  }
}

@keyframes marketing-light-sweep {
  0%,
  32%,
  100% {
    opacity: 0;
    transform: translateX(-120%) skewX(-8deg);
  }

  52% {
    opacity: 0.88;
  }

  72% {
    opacity: 0;
    transform: translateX(310%) skewX(-8deg);
  }
}

@keyframes marketing-card-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -16px;
  }
}

@keyframes marketing-image-loop {
  0% {
    transform: scale(1.04) translateY(0);
  }

  100% {
    transform: scale(1.1) translateY(-2%);
  }
}

@keyframes marketing-progress {
  0%,
  100% {
    opacity: 0.44;
    transform: scaleX(0.68);
  }

  52% {
    opacity: 0.92;
    transform: scaleX(1);
  }
}

@keyframes marketing-bubble-pop {
  0%,
  100% {
    opacity: 0.38;
    translate: 0 0;
    transform: scale(0.92);
  }

  48% {
    opacity: 0.96;
    translate: 0 -8px;
    transform: scale(1);
  }
}

@keyframes marketing-console-step {
  0%,
  24%,
  100% {
    transform: translateX(0);
  }

  38%,
  58% {
    transform: translateX(100%);
  }

  72%,
  90% {
    transform: translateX(200%);
  }
}

@keyframes marketing-orbit-turn {
  to {
    rotate: 360deg;
  }
}

@keyframes system-stage-sweep {
  0%,
  30%,
  100% {
    opacity: 0;
    transform: translateX(-120%) skewX(-8deg);
  }

  50% {
    opacity: 1;
  }

  70% {
    opacity: 0;
    transform: translateX(310%) skewX(-8deg);
  }
}

@keyframes system-stage-kenburns {
  0% {
    object-position: center right;
    transform: scale(1.04) translateY(0);
  }

  100% {
    object-position: 58% 48%;
    transform: scale(1.1) translateY(-1.5%);
  }
}

@keyframes system-grid-flow {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 76px 76px;
  }
}

@keyframes system-node-pulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.82);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.24);
  }
}

@keyframes system-card-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

@keyframes system-card-image {
  0% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1.11) translateY(-2%);
  }
}

@keyframes system-chip-float {
  0%,
  100% {
    translate: 0 0;
    opacity: 0.82;
  }

  50% {
    translate: 0 -10px;
    opacity: 1;
  }
}

@keyframes system-clip-loop {
  0%,
  100% {
    opacity: 0.46;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 0.94;
    transform: scaleX(1);
  }
}

@keyframes system-playhead-loop {
  0% {
    left: 12%;
    opacity: 0.28;
  }

  56% {
    opacity: 1;
  }

  100% {
    left: 84%;
    opacity: 0.28;
  }
}

.section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 6.2rem max(1rem, calc((100% - var(--max)) / 2));
}

.section:not(.dark):not(.final-cta) {
  background:
    radial-gradient(circle at calc(50% - 420px) 10%, rgba(213, 171, 86, 0.1), transparent 31rem),
    radial-gradient(circle at calc(50% + 470px) 86%, rgba(213, 171, 86, 0.07), transparent 34rem),
    linear-gradient(180deg, var(--surface) 0%, #f6efe3 100%);
  color: var(--text-dark);
}

.section.dark {
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
  background:
    radial-gradient(circle at 78% 18%, rgba(213, 171, 86, 0.22), transparent 29rem),
    radial-gradient(circle at 18% 86%, rgba(101, 216, 255, 0.075), transparent 24rem),
    linear-gradient(180deg, #383126 0%, #272219 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.section.dark > * {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.section.dark h2,
.section.dark h3,
.final-cta h2,
.final-cta h3 {
  color: var(--heading-bright);
  text-shadow: var(--heading-shadow);
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.section-intro p:last-child {
  margin-top: 1rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: 3rem;
  align-items: center;
}

.section-copy h2 {
  margin-bottom: 1.2rem;
}

.section-copy > p {
  font-size: 1.05rem;
}

.reach-section {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: clamp(2rem, 5vw, 5.6rem);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.reach-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at calc(50% - 480px) 44%, rgba(213, 171, 86, 0.18), transparent 24rem),
    radial-gradient(circle at calc(50% + 420px) 18%, rgba(255, 255, 255, 0.58), transparent 20rem),
    linear-gradient(90deg, rgba(255, 253, 248, 0.42), transparent 52%);
}

.reach-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(156, 116, 45, 0.28), transparent);
}

.reach-copy,
.reach-system {
  position: relative;
  z-index: 1;
}

.reach-copy {
  min-height: 500px;
  display: grid;
  align-items: center;
}

.reach-copy-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.reach-copy-content::before {
  position: absolute;
  inset: -2.6rem -1.4rem -2.2rem -2rem;
  z-index: -1;
  content: "";
  background:
    radial-gradient(ellipse at 26% 45%, rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.56) 48%, transparent 76%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.52), transparent);
  filter: blur(7px);
}

.reach-copy h2 {
  max-width: 640px;
  margin-bottom: 1.2rem;
}

.reach-copy-content > p:not(.eyebrow) {
  max-width: 610px;
  font-size: 1.07rem;
}

.reach-ghost-scene {
  position: absolute;
  top: 50%;
  left: clamp(-7rem, -7vw, -3rem);
  z-index: 0;
  width: min(720px, 66vw);
  height: min(570px, 54vw);
  opacity: 0.78;
  transform: translateY(-50%);
  pointer-events: none;
}

.reach-ghost-scene::before,
.reach-ghost-scene::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.reach-ghost-scene::before {
  inset: 14% 8% 10% 10%;
  border: 1px solid rgba(156, 116, 45, 0.2);
  border-radius: 999px;
  transform: rotate(-10deg);
  animation: reach-orbit-breathe 7s ease-in-out infinite;
}

.reach-ghost-scene::after {
  inset: 24% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(156, 116, 45, 0.35), rgba(101, 216, 255, 0.18), transparent);
  opacity: 0.7;
  animation: reach-scan 5.2s ease-in-out infinite;
}

.reach-ghost-device {
  position: absolute;
  overflow: hidden;
  border: 7px solid rgba(5, 4, 3, 0.78);
  border-radius: 34px;
  background: #050403;
  box-shadow:
    0 30px 90px rgba(48, 36, 18, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.18);
  filter: saturate(0.96) contrast(1.04);
  animation: reach-device-float 7.2s ease-in-out infinite;
}

.reach-ghost-device::before {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  width: 44px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  content: "";
  transform: translateX(-50%);
}

.reach-ghost-device::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.02), rgba(5, 4, 3, 0.36)),
    radial-gradient(circle at 72% 18%, rgba(242, 210, 122, 0.24), transparent 9rem);
}

.reach-ghost-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: reach-reel-pan 9s ease-in-out infinite alternate;
}

.reach-device-a {
  top: 13%;
  left: 10%;
  z-index: 2;
  width: clamp(148px, 17vw, 220px);
  aspect-ratio: 9 / 16;
  rotate: -9deg;
  opacity: 0.62;
}

.reach-device-a span {
  position: absolute;
  right: 11px;
  z-index: 4;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
}

.reach-device-a span:nth-child(2) {
  bottom: 86px;
}

.reach-device-a span:nth-child(3) {
  bottom: 58px;
}

.reach-device-a span:nth-child(4) {
  bottom: 30px;
}

.reach-device-b {
  top: 30%;
  left: 38%;
  z-index: 1;
  width: clamp(118px, 13vw, 172px);
  aspect-ratio: 9 / 16;
  opacity: 0.46;
  rotate: 7deg;
  animation-delay: -3.2s;
}

.reach-orbit {
  position: absolute;
  top: 11%;
  left: 32%;
  width: clamp(190px, 22vw, 286px);
  aspect-ratio: 1;
  border: 1px solid rgba(156, 116, 45, 0.18);
  border-radius: 50%;
  animation: reach-orbit-turn 20s linear infinite;
}

.reach-orbit i {
  position: absolute;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--gold-deep);
  box-shadow: 0 0 24px rgba(213, 171, 86, 0.5);
}

.reach-orbit i:nth-child(1) {
  top: 4%;
  left: 55%;
}

.reach-orbit i:nth-child(2) {
  right: 8%;
  bottom: 25%;
}

.reach-orbit i:nth-child(3) {
  bottom: 9%;
  left: 20%;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(101, 216, 255, 0.32);
}

.reach-sweep {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(213, 171, 86, 0.7), rgba(101, 216, 255, 0.25), transparent);
  opacity: 0.44;
  transform-origin: left;
  animation: reach-signal-draw 5.8s ease-in-out infinite;
}

.reach-sweep-a {
  top: 38%;
  left: 4%;
  width: 48%;
  rotate: -8deg;
}

.reach-sweep-b {
  right: 15%;
  bottom: 27%;
  width: 36%;
  rotate: 12deg;
  animation-delay: -2.4s;
}

.reach-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.65rem;
}

.reach-proof-strip span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.78rem;
  border: 1px solid rgba(156, 116, 45, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: 0 12px 34px rgba(48, 36, 18, 0.08);
  color: rgba(23, 19, 12, 0.68);
  font-size: 0.84rem;
  font-weight: 760;
}

.reach-system {
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(156, 116, 45, 0.16);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.8), rgba(247, 240, 226, 0.52)),
    rgba(255, 253, 248, 0.62);
  box-shadow: 0 26px 84px rgba(48, 36, 18, 0.12);
  backdrop-filter: blur(16px) saturate(145%);
}

.reach-system::before {
  position: absolute;
  inset: -20% auto -20% -42%;
  width: 42%;
  content: "";
  background: linear-gradient(
    105deg,
    transparent 0 35%,
    rgba(255, 255, 255, 0.72) 46%,
    rgba(242, 210, 122, 0.34) 52%,
    transparent 64%
  );
  filter: blur(10px);
  transform: translateX(-80%) skewX(-8deg);
  animation: reach-panel-sheen 8s ease-in-out infinite;
}

.reach-system-head,
.reach-path,
.reach-metric-rail {
  position: relative;
  z-index: 1;
}

.reach-system-head {
  padding: 0.35rem 0.35rem 1rem;
}

.reach-system-head span {
  color: var(--gold-deep);
  font-size: 0.84rem;
  font-weight: 820;
}

.reach-system-head strong {
  display: block;
  max-width: 360px;
  margin-top: 0.35rem;
  color: var(--text-dark);
  font-size: clamp(1.2rem, 2vw, 1.58rem);
  line-height: 1.12;
}

.reach-path {
  display: grid;
  gap: 0.7rem;
}

.reach-step {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  min-height: 116px;
  padding: 1rem;
  border: 1px solid rgba(156, 116, 45, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 14px 42px rgba(48, 36, 18, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.reach-step:hover {
  transform: translateY(-3px);
  border-color: rgba(156, 116, 45, 0.32);
  box-shadow: 0 20px 58px rgba(48, 36, 18, 0.12);
}

.reach-step > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(213, 171, 86, 0.22), rgba(255, 253, 248, 0.82));
  color: var(--gold-deep);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(156, 116, 45, 0.16);
}

.reach-step h3 {
  margin-bottom: 0.38rem;
  color: var(--text-dark);
  font-size: 1.15rem;
}

.reach-step p {
  margin: 0;
  color: var(--text-soft);
}

.reach-metric-rail {
  display: grid;
  gap: 0.42rem;
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: rgba(23, 19, 12, 0.05);
}

.reach-metric-rail span {
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(156, 116, 45, 0.7), rgba(101, 216, 255, 0.24)) left center / var(--w) 100% no-repeat,
    rgba(23, 19, 12, 0.08);
  animation: reach-meter 5.4s ease-in-out infinite;
}

.reach-metric-rail span:nth-child(2) {
  animation-delay: -1.4s;
}

.reach-metric-rail span:nth-child(3) {
  animation-delay: -2.8s;
}

.signal-stack {
  display: grid;
  gap: 0.8rem;
}

.signal-stack div,
.glass-card,
.price-card,
.case-card,
.profile-card,
.contact-card,
.contact-form,
.quiz-shell,
.check-card,
.final-cta-inner,
.legal-page {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(150%);
}

.signal-stack div {
  padding: 1.1rem;
}

.signal-stack span,
.timeline span,
.process-line span {
  color: var(--gold-strong);
  font-weight: 800;
}

.services-system-section {
  overflow: hidden;
}

.services-system-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 16%, rgba(213, 171, 86, 0.12), transparent 28rem),
    radial-gradient(circle at 10% 80%, rgba(101, 216, 255, 0.055), transparent 22rem);
}

.services-system-section > * {
  position: relative;
}

.services-system-intro {
  width: min(900px, 100%);
  margin: 0 auto 2.2rem;
  text-align: center;
}

.services-system-intro p:last-child {
  max-width: 760px;
  margin: 1rem auto 0;
}

.services-system-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.72fr);
  gap: 1.15rem;
  align-items: stretch;
}

.services-system-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(156, 116, 45, 0.16);
  border-radius: var(--radius);
  background: #16120d;
  box-shadow: 0 28px 90px rgba(48, 36, 18, 0.18);
  isolation: isolate;
}

.services-system-stage::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.18), transparent 34%, rgba(5, 4, 3, 0.32)),
    linear-gradient(180deg, transparent 34%, rgba(5, 4, 3, 0.74));
}

.services-system-stage::after {
  position: absolute;
  inset: -12% auto -12% -24%;
  z-index: 5;
  width: 46%;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    108deg,
    transparent 0 38%,
    rgba(255, 255, 255, 0.08) 46%,
    rgba(242, 210, 122, 0.2) 51%,
    rgba(101, 216, 255, 0.1) 56%,
    transparent 66%
  );
  filter: blur(9px);
  transform: translateX(-120%) skewX(-8deg);
  animation: system-stage-sweep 8s ease-in-out infinite;
}

.system-stage-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.95) contrast(1.02) brightness(0.82);
  transform: scale(1.04);
  animation: system-stage-kenburns 12s ease-in-out infinite alternate;
}

.system-stage-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(ellipse at 58% 44%, rgba(0, 0, 0, 0.6), transparent 74%);
  opacity: 0.52;
  animation: system-grid-flow 13s linear infinite;
}

.system-stage-overlay span {
  position: absolute;
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-strong);
  box-shadow: 0 0 24px rgba(242, 210, 122, 0.62);
  animation: system-node-pulse 3.8s ease-in-out infinite;
}

.system-stage-overlay span:nth-child(1) {
  top: 24%;
  left: 38%;
}

.system-stage-overlay span:nth-child(2) {
  right: 20%;
  bottom: 34%;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(101, 216, 255, 0.44);
  animation-delay: -1.2s;
}

.system-stage-overlay span:nth-child(3) {
  bottom: 24%;
  left: 22%;
  animation-delay: -2.1s;
}

.system-production-card {
  position: absolute;
  right: 1.1rem;
  bottom: 1.15rem;
  z-index: 6;
  width: min(290px, 42%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(12, 10, 7, 0.72);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px) saturate(140%);
  animation: system-card-float 6.6s ease-in-out infinite;
}

.system-production-card img {
  width: 100%;
  aspect-ratio: 1.08;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06) brightness(0.86);
  transform: scale(1.04);
  animation: system-card-image 9s ease-in-out infinite alternate;
}

.system-production-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.72rem 0.82rem;
  color: var(--paper);
}

.system-production-card span {
  color: var(--gold-strong);
  font-size: 0.74rem;
  font-weight: 850;
}

.system-production-card strong {
  font-size: 0.84rem;
}

.system-metric-chip {
  position: absolute;
  z-index: 7;
  display: grid;
  gap: 0.05rem;
  min-width: 132px;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.12);
  color: var(--paper);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px) saturate(150%);
  animation: system-chip-float 5.8s ease-in-out infinite;
}

.system-metric-chip span {
  color: rgba(247, 243, 234, 0.68);
  font-size: 0.75rem;
  font-weight: 750;
}

.system-metric-chip strong {
  color: var(--gold-strong);
  font-size: 1.35rem;
  line-height: 1;
}

.chip-watch {
  top: 1.2rem;
  left: 1.2rem;
}

.chip-hook {
  top: 38%;
  left: 8%;
  animation-delay: -2s;
}

.system-timeline {
  position: absolute;
  right: 1.05rem;
  bottom: 14.8rem;
  left: 1.05rem;
  z-index: 6;
  min-height: 56px;
  display: grid;
  grid-template-columns: 0.8fr 1.24fr 0.72fr 1fr;
  gap: 0.5rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(12, 10, 7, 0.5);
  backdrop-filter: blur(14px) saturate(140%);
}

.system-timeline span {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(213, 171, 86, 0.86), rgba(101, 216, 255, 0.34));
  transform-origin: left;
  animation: system-clip-loop 4.8s ease-in-out infinite;
}

.system-timeline span:nth-child(2) {
  animation-delay: -1.1s;
}

.system-timeline span:nth-child(3) {
  animation-delay: -2.2s;
}

.system-timeline span:nth-child(4) {
  animation-delay: -3.2s;
}

.system-timeline i {
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 14%;
  width: 2px;
  border-radius: 999px;
  background: var(--gold-strong);
  box-shadow: 0 0 18px rgba(242, 210, 122, 0.78);
  animation: system-playhead-loop 5.6s ease-in-out infinite;
}

.services-system-steps {
  display: grid;
  gap: 0.85rem;
}

.services-system-steps article {
  position: relative;
  min-height: 0;
  display: grid;
  align-content: center;
  padding: 1.25rem 1.25rem 1.25rem 4.2rem;
  overflow: hidden;
  border: 1px solid rgba(156, 116, 45, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 16px 48px rgba(48, 36, 18, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.services-system-steps article::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 88% 16%, rgba(213, 171, 86, 0.13), transparent 13rem),
    linear-gradient(90deg, rgba(156, 116, 45, 0.08), transparent 36%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.services-system-steps article:hover {
  transform: translateY(-4px);
  border-color: rgba(156, 116, 45, 0.34);
  box-shadow: 0 24px 70px rgba(48, 36, 18, 0.13);
}

.services-system-steps article:hover::before {
  opacity: 1;
}

.services-system-steps article > * {
  position: relative;
}

.services-system-steps span {
  position: absolute;
  top: 1.35rem;
  left: 1.25rem;
  color: var(--gold-deep);
  font-size: 0.88rem;
  font-weight: 850;
}

.services-system-steps span::after {
  position: absolute;
  top: 0.58rem;
  left: 1.9rem;
  width: 30px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(156, 116, 45, 0.7), transparent);
}

.services-system-steps h3 {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
}

.services-system-steps p {
  margin: 0;
}

.signal-stack strong {
  display: block;
  margin: 0.35rem 0;
  color: var(--paper);
  font-size: 1.15rem;
}

.signal-lab {
  display: grid;
  gap: 1rem;
}

.phone-stage {
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(156, 116, 45, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% 28%, rgba(213, 171, 86, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(255, 253, 248, 0.76), rgba(239, 230, 215, 0.58));
  box-shadow: 0 24px 80px rgba(48, 36, 18, 0.12);
  overflow: hidden;
}

.phone-stage::before,
.phone-stage::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.phone-stage::before {
  inset: 42px 12%;
  border: 1px solid rgba(156, 116, 45, 0.14);
  border-radius: 999px;
}

.phone-stage::after {
  right: 12%;
  bottom: 16%;
  width: 32%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(156, 116, 45, 0.48), transparent);
  animation: scan-line 3.2s ease-in-out infinite;
}

.phone-mockup {
  position: absolute;
  overflow: hidden;
  border: 7px solid #10100e;
  border-radius: 34px;
  background: #050403;
  box-shadow: 0 24px 70px rgba(20, 15, 6, 0.34);
}

.phone-mockup::before {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  width: 48px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
  transform: translateX(-50%);
}

.phone-primary {
  top: 34px;
  left: 18%;
  z-index: 2;
  width: 164px;
  aspect-ratio: 9 / 16;
  animation: device-float 5.8s ease-in-out infinite;
}

.phone-secondary {
  top: 108px;
  right: 16%;
  width: 118px;
  aspect-ratio: 9 / 16;
  opacity: 0.86;
  rotate: 6deg;
  animation: device-float 6.4s ease-in-out infinite reverse;
}

.phone-screen,
.phone-screen img {
  width: 100%;
  height: 100%;
}

.phone-screen img {
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  animation: reel-pan 8s ease-in-out infinite alternate;
}

.reel-ui {
  position: absolute;
  right: 10px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  gap: 0.42rem;
}

.reel-ui span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.34);
}

.analytics-orbit {
  position: absolute;
  right: 8%;
  top: 34px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(156, 116, 45, 0.16);
  border-radius: 50%;
  animation: halo-drift 12s linear infinite;
}

.analytics-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-deep);
  box-shadow: 0 0 22px rgba(213, 171, 86, 0.42);
}

.analytics-orbit span:nth-child(1) {
  top: 8px;
  left: 50%;
}

.analytics-orbit span:nth-child(2) {
  right: 10px;
  bottom: 30px;
}

.analytics-orbit span:nth-child(3) {
  left: 16px;
  bottom: 18px;
}

@keyframes device-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes reel-pan {
  to {
    transform: scale(1.08) translateY(-2%);
  }
}

@keyframes halo-drift {
  to {
    rotate: 360deg;
  }
}

@keyframes scan-line {
  0%,
  100% {
    transform: translateX(-18px);
    opacity: 0.35;
  }

  50% {
    transform: translateX(18px);
    opacity: 0.9;
  }
}

@keyframes reach-device-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

@keyframes reach-reel-pan {
  to {
    transform: scale(1.1) translateY(-2.2%);
  }
}

@keyframes reach-orbit-turn {
  to {
    rotate: 360deg;
  }
}

@keyframes reach-orbit-breathe {
  0%,
  100% {
    opacity: 0.36;
    transform: rotate(-10deg) scale(0.96);
  }

  50% {
    opacity: 0.72;
    transform: rotate(-10deg) scale(1.04);
  }
}

@keyframes reach-scan {
  0%,
  100% {
    opacity: 0;
    transform: translateY(-80px);
  }

  48% {
    opacity: 0.8;
  }

  72% {
    opacity: 0;
    transform: translateY(170px);
  }
}

@keyframes reach-signal-draw {
  0%,
  100% {
    opacity: 0.16;
    transform: scaleX(0.42);
  }

  54% {
    opacity: 0.72;
    transform: scaleX(1);
  }
}

@keyframes reach-panel-sheen {
  0%,
  38%,
  100% {
    opacity: 0;
    transform: translateX(-80%) skewX(-8deg);
  }

  58% {
    opacity: 0.86;
  }

  76% {
    opacity: 0;
    transform: translateX(340%) skewX(-8deg);
  }
}

@keyframes reach-meter {
  0%,
  100% {
    opacity: 0.58;
    filter: saturate(0.82);
  }

  50% {
    opacity: 1;
    filter: saturate(1.12);
  }
}

@keyframes production-grid-drift {
  to {
    background-position: 42px 42px;
  }
}

@keyframes production-line-draw {
  0%,
  100% {
    opacity: 0.18;
    transform: scaleX(0.42);
  }

  50% {
    opacity: 0.82;
    transform: scaleX(1);
  }
}

@keyframes production-node-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.88);
  }

  50% {
    opacity: 0.98;
    transform: scale(1.08);
  }
}

@keyframes production-light-pass {
  0%,
  36%,
  100% {
    opacity: 0;
    transform: translateX(-170%) skewX(-8deg);
  }

  56% {
    opacity: 0.92;
  }

  74% {
    opacity: 0;
    transform: translateX(520%) skewX(-8deg);
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.compact {
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.glass-card {
  padding: 1.35rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.glass-card:hover,
.case-card:hover,
.profile-card:hover {
  transform: translateY(-4px);
  border-color: rgba(213, 171, 86, 0.45);
  background: rgba(24, 22, 17, 0.78);
}

.glass-card h3,
.profile-card h3,
.case-card h3 {
  margin-bottom: 0.65rem;
}

.knowledge-grid .glass-card {
  min-height: 205px;
  display: grid;
  grid-template-rows: minmax(3.08rem, auto) minmax(3.5rem, auto) auto;
  align-content: start;
}

.knowledge-grid .glass-card h3 {
  margin: 0;
}

.knowledge-grid .glass-card p {
  margin: 0;
}

.knowledge-grid .glass-card .text-link {
  align-self: start;
  margin-top: 0.15rem;
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-content: end;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 18%, rgba(213, 171, 86, 0.2), transparent 18rem),
    rgba(45, 40, 31, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(150%);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-card:hover {
  border-color: rgba(213, 171, 86, 0.42);
  transform: translateY(-4px);
}

.service-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.55rem;
}

.service-card > :not(.service-visual) {
  position: relative;
  z-index: 2;
}

.service-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.service-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(9, 8, 6, 0.96));
}

.service-card-reels .service-visual {
  background:
    radial-gradient(circle at 47% 23%, rgba(213, 171, 86, 0.18), transparent 16rem),
    radial-gradient(circle at 34% 24%, rgba(101, 216, 255, 0.08), transparent 15rem);
}

.service-card-reels .service-visual::before {
  position: absolute;
  top: 3rem;
  left: 50%;
  width: min(340px, 66%);
  height: 220px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: translateX(-50%) perspective(700px) rotateX(56deg);
  transform-origin: 50% 90%;
  opacity: 0.32;
  animation: production-grid-drift 9s linear infinite;
}

.production-frame-lines {
  position: absolute;
  top: 2.2rem;
  left: 50%;
  width: min(360px, 70%);
  height: 230px;
  transform: translateX(-50%);
  opacity: 0.78;
}

.production-frame-lines::before,
.production-frame-lines::after,
.production-frame-lines span {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(242, 210, 122, 0.62), rgba(101, 216, 255, 0.22), transparent);
  transform-origin: left;
  animation: production-line-draw 5.4s ease-in-out infinite;
}

.production-frame-lines::before {
  top: 16%;
  left: 8%;
  width: 44%;
  height: 2px;
  rotate: -5deg;
}

.production-frame-lines::after {
  right: 7%;
  bottom: 26%;
  width: 36%;
  height: 2px;
  rotate: 8deg;
  animation-delay: -2.2s;
}

.production-frame-lines span:nth-child(1) {
  top: 8%;
  right: 18%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(213, 171, 86, 0.24);
  border-radius: 50%;
  background: rgba(213, 171, 86, 0.06);
  box-shadow: 0 0 34px rgba(213, 171, 86, 0.12);
  animation: production-node-pulse 4.6s ease-in-out infinite;
}

.production-frame-lines span:nth-child(2) {
  left: 17%;
  bottom: 18%;
  width: 7px;
  height: 7px;
  background: var(--gold-strong);
  box-shadow: 0 0 22px rgba(242, 210, 122, 0.5);
  animation: production-node-pulse 4.6s ease-in-out infinite -1.4s;
}

.production-frame-lines span:nth-child(3) {
  top: 40%;
  left: 74%;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(101, 216, 255, 0.34);
  animation: production-node-pulse 4.6s ease-in-out infinite -2.6s;
}

.production-light-pass {
  position: absolute;
  top: -8%;
  bottom: 32%;
  left: 14%;
  z-index: 1;
  width: 20%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.11), rgba(242, 210, 122, 0.18), transparent);
  filter: blur(8px);
  transform: translateX(-170%) skewX(-8deg);
  animation: production-light-pass 7s ease-in-out infinite;
}

.mini-phone {
  position: absolute;
  top: 36px;
  left: 50%;
  z-index: 2;
  width: 164px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 7px solid #050403;
  border-radius: 34px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  translate: -50% 0;
  rotate: -2deg;
  animation: device-float 6s ease-in-out infinite;
}

.mini-phone::before {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  width: 44px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  content: "";
  transform: translateX(-50%);
}

.mini-phone::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(180deg, transparent 0%, rgba(5, 4, 3, 0.16) 62%, rgba(5, 4, 3, 0.34) 100%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 34%);
}

.mini-phone-main {
  left: 50%;
  width: 154px;
  rotate: -1.5deg;
}

.mini-phone-preview {
  top: 86px;
  left: 33%;
  z-index: 1;
  width: 82px;
  opacity: 0.56;
  border-width: 5px;
  border-radius: 23px;
  filter: saturate(0.78) brightness(0.85);
  rotate: -10deg;
  animation-delay: -2.8s;
}

.mini-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: reel-pan 8s ease-in-out infinite alternate;
}

.edit-timeline {
  position: absolute;
  right: 8%;
  bottom: 33%;
  left: 8%;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.3fr 0.9fr;
  gap: 0.4rem;
  rotate: -1deg;
}

.edit-timeline span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(213, 171, 86, 0.92), rgba(101, 216, 255, 0.38));
  box-shadow: 0 0 22px rgba(213, 171, 86, 0.18);
  animation: timeline-pulse 2.8s ease-in-out infinite;
}

.edit-timeline span:nth-child(2) {
  animation-delay: 180ms;
}

.edit-timeline span:nth-child(3) {
  animation-delay: 360ms;
}

.edit-timeline span:nth-child(4) {
  animation-delay: 540ms;
}

.waveform {
  position: absolute;
  top: 70px;
  right: 10%;
  display: flex;
  align-items: center;
  gap: 0.22rem;
  height: 42px;
}

.waveform span {
  width: 4px;
  height: 20px;
  border-radius: 999px;
  background: rgba(247, 243, 234, 0.62);
  animation: waveform 1.2s ease-in-out infinite;
}

.waveform span:nth-child(2) {
  animation-delay: 80ms;
}

.waveform span:nth-child(3) {
  animation-delay: 160ms;
}

.waveform span:nth-child(4) {
  animation-delay: 240ms;
}

.waveform span:nth-child(5) {
  animation-delay: 320ms;
}

.strategy-visual {
  background:
    radial-gradient(circle at 50% 25%, rgba(101, 216, 255, 0.09), transparent 16rem),
    radial-gradient(circle at 70% 34%, rgba(213, 171, 86, 0.16), transparent 18rem);
}

.strategy-map {
  position: absolute;
  inset: 54px 12% auto;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.strategy-map span {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(213, 171, 86, 0.34);
  border-radius: 50%;
  background: rgba(213, 171, 86, 0.11);
  box-shadow: 0 0 42px rgba(213, 171, 86, 0.12);
  animation: map-node 4s ease-in-out infinite;
}

.strategy-map span:nth-child(1) {
  top: 26px;
  left: 24px;
}

.strategy-map span:nth-child(2) {
  top: 96px;
  left: 44%;
  animation-delay: 220ms;
}

.strategy-map span:nth-child(3) {
  right: 28px;
  top: 32px;
  animation-delay: 420ms;
}

.strategy-map span:nth-child(4) {
  right: 64px;
  bottom: 22px;
  animation-delay: 620ms;
}

.growth-line {
  position: absolute;
  right: 11%;
  bottom: 32%;
  left: 11%;
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.growth-line span {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 47%, rgba(213, 171, 86, 0.82) 48%, rgba(213, 171, 86, 0.82) 51%, transparent 52%),
    radial-gradient(circle at 76% 20%, rgba(213, 171, 86, 0.9) 0 5px, transparent 6px);
  animation: line-rise 3.6s ease-in-out infinite;
}

.data-chip {
  position: absolute;
  padding: 0.42rem 0.64rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 243, 234, 0.78);
  font-size: 0.76rem;
  font-weight: 760;
}

.data-chip:nth-of-type(3) {
  top: 34px;
  left: 9%;
}

.data-chip:nth-of-type(4) {
  right: 8%;
  bottom: 44%;
}

@keyframes timeline-pulse {
  50% {
    opacity: 0.56;
    transform: scaleX(0.92);
  }
}

@keyframes waveform {
  50% {
    height: 38px;
  }
}

@keyframes map-node {
  50% {
    transform: scale(1.12);
    background: rgba(213, 171, 86, 0.18);
  }
}

@keyframes line-rise {
  50% {
    transform: translateY(-8px);
    opacity: 0.72;
  }
}

.mini-kicker {
  margin: 0 0 0.75rem;
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-strong);
  font-weight: 760;
}

.text-link:hover {
  color: var(--cyan);
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.process-line,
.timeline {
  list-style: none;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.process-band {
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(6rem, 8vw, 9rem);
  padding-bottom: clamp(6rem, 8vw, 9rem);
}

.process-band::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.82) 0%, rgba(255, 253, 248, 0.44) 45%, rgba(255, 253, 248, 0.64) 100%),
    url("references-process-bg.png?v=20260525-clean") center 44% / cover no-repeat;
  filter: saturate(0.92) sepia(0.18) brightness(1.28);
  opacity: 0.94;
  transform: scale(1.04);
  animation: process-bg-drift 18s ease-in-out infinite alternate;
}

.process-band::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 253, 248, 0.82), rgba(255, 253, 248, 0.38) 23rem, transparent 44rem),
    radial-gradient(circle at 14% 74%, rgba(213, 171, 86, 0.14), transparent 26rem),
    radial-gradient(circle at 85% 68%, rgba(255, 255, 255, 0.4), transparent 24rem),
    linear-gradient(180deg, rgba(255, 253, 248, 0.58), rgba(246, 239, 227, 0.68));
  pointer-events: none;
}

.process-band .section-intro,
.process-band .process-line {
  position: relative;
  z-index: 1;
}

.process-band .section-intro {
  max-width: 850px;
}

.process-line li,
.timeline li {
  position: relative;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.process-line strong {
  display: block;
  margin: 0.55rem 0 0.35rem;
}

.process-band .process-line {
  gap: 0.85rem;
  align-items: stretch;
}

.process-band .process-line li {
  overflow: hidden;
  min-height: 190px;
  padding: 1.25rem;
  border-color: rgba(114, 81, 29, 0.16);
  background: rgba(255, 253, 248, 0.72);
  box-shadow:
    0 24px 80px rgba(49, 37, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(125%);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.process-band .process-line li::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(213, 171, 86, 0.16), transparent 36%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 220ms ease, transform 620ms ease;
}

.process-band .process-line li::after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 58px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(183, 126, 39, 0.62), rgba(101, 216, 255, 0.44));
  opacity: 0.42;
}

.process-band .process-line li:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 126, 39, 0.28);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 30px 90px rgba(49, 37, 20, 0.14);
}

.process-band .process-line li:hover::before {
  opacity: 1;
  transform: translateX(38%);
}

.process-band .process-line span,
.process-band .process-line strong,
.process-band .process-line p {
  position: relative;
  z-index: 1;
}

@keyframes process-bg-drift {
  0% {
    background-position: center 44%;
    transform: scale(1.04);
  }

  100% {
    background-position: center 51%;
    transform: scale(1.08);
  }
}

.motion-panel {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.logo-showcase {
  position: relative;
  width: min(520px, 92%);
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 50% 44%, rgba(213, 171, 86, 0.18), transparent 56%),
    rgba(24, 21, 16, 0.76);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px) saturate(140%);
  transform-style: preserve-3d;
  animation: logo-float 7s ease-in-out infinite;
}

.logo-showcase::before {
  position: absolute;
  inset: -35% -18%;
  content: "";
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 235, 174, 0.08) 45%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(213, 171, 86, 0.11) 56%,
    transparent 64%
  );
  transform: translateX(-55%) rotate(8deg);
  animation: logo-shine 6.4s ease-in-out infinite;
}

.logo-showcase::after {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(213, 171, 86, 0.12);
  border-radius: var(--radius);
  pointer-events: none;
}

.logo-showcase img {
  position: relative;
  z-index: 2;
  width: min(360px, 74%);
  filter:
    drop-shadow(0 18px 36px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 28px rgba(213, 171, 86, 0.2));
  transform: translateZ(42px);
  animation: logo-breathe 5.2s ease-in-out infinite;
}

.logo-halo {
  position: absolute;
  width: min(360px, 72%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(242, 210, 122, 0.18), transparent 62%),
    conic-gradient(from 120deg, transparent, rgba(213, 171, 86, 0.42), transparent, rgba(101, 216, 255, 0.18), transparent);
  filter: blur(1px);
  opacity: 0.88;
  animation: logo-halo-turn 18s linear infinite;
}

.logo-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.logo-lines span {
  position: absolute;
  height: 1px;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(242, 210, 122, 0.58), transparent);
  opacity: 0.68;
  transform-origin: center;
}

.logo-lines span:nth-child(1) {
  top: 24%;
  left: 9%;
  animation: logo-line-slide 5.5s ease-in-out infinite;
}

.logo-lines span:nth-child(2) {
  right: 8%;
  bottom: 27%;
  animation: logo-line-slide 6.2s ease-in-out infinite reverse;
}

.logo-lines span:nth-child(3) {
  left: 35%;
  bottom: 15%;
  width: 26%;
  opacity: 0.42;
  animation: logo-line-slide 7s ease-in-out infinite;
}

@keyframes logo-float {
  0%,
  100% {
    transform: rotateX(0deg) rotateY(-2deg) translateY(0);
  }

  50% {
    transform: rotateX(2deg) rotateY(2deg) translateY(-10px);
  }
}

@keyframes logo-breathe {
  0%,
  100% {
    transform: translateZ(42px) scale(1);
  }

  50% {
    transform: translateZ(42px) scale(1.035);
  }
}

@keyframes logo-shine {
  0%,
  18% {
    transform: translateX(-58%) rotate(8deg);
  }

  54%,
  100% {
    transform: translateX(58%) rotate(8deg);
  }
}

@keyframes logo-halo-turn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logo-line-slide {
  0%,
  100% {
    transform: translateX(-16px);
  }

  50% {
    transform: translateX(18px);
  }
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric-row div {
  padding: 1.5rem;
  border: 1px solid rgba(213, 171, 86, 0.32);
  border-radius: var(--radius);
  background: rgba(213, 171, 86, 0.08);
  text-align: center;
}

.metric-row strong {
  display: block;
  color: var(--gold-strong);
  font-size: 2.7rem;
  line-height: 1;
}

.metric-row span {
  color: var(--paper-soft);
  font-weight: 700;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

blockquote {
  min-height: 184px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 0.74rem;
  margin: 0;
  padding: 1.4rem;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
}

blockquote cite {
  display: block;
  align-self: start;
  margin-top: 0;
  color: var(--muted);
  font-style: normal;
  font-size: clamp(0.78rem, 0.74vw, 0.88rem);
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
}

.google-review-badge {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.52rem;
  padding: 0.48rem 0.62rem;
  border: 1px solid rgba(213, 171, 86, 0.26);
  border-radius: 999px;
  background: rgba(213, 171, 86, 0.12);
  color: var(--gold-deep);
  box-shadow: 0 12px 30px rgba(48, 36, 18, 0.08);
  font-size: 0.78rem;
  line-height: 1;
}

.google-review-badge span {
  color: var(--gold-strong);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.google-review-badge strong {
  color: inherit;
  font-size: inherit;
  font-weight: 850;
  line-height: 1.12;
}

.google-review-badge:hover {
  border-color: rgba(183, 126, 39, 0.44);
  background: rgba(213, 171, 86, 0.18);
  transform: translateY(-1px);
}

.team-grid,
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-grid article {
  min-height: 170px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.team-portrait-grid {
  align-items: stretch;
}

.team-portrait-grid .team-person-card {
  position: relative;
  min-height: 312px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0.72rem 0.72rem 1rem;
  border-color: rgba(255, 255, 255, 0.17);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(42, 38, 30, 0.84);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.24);
  isolation: isolate;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.team-portrait-grid .team-person-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 86% 8%, rgba(213, 171, 86, 0.18), transparent 12rem),
    radial-gradient(circle at 12% 96%, rgba(101, 216, 255, 0.07), transparent 12rem);
  opacity: 0.9;
}

.team-portrait-grid .team-person-card:hover {
  transform: translateY(-5px);
  border-color: rgba(213, 171, 86, 0.42);
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.32);
}

.team-person-media {
  position: relative;
  height: 132px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(247, 243, 234, 0.9);
  box-shadow: inset 0 0 0 1px rgba(213, 171, 86, 0.08);
}

.team-person-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(19, 16, 11, 0.02) 0%, rgba(19, 16, 11, 0.56) 100%),
    linear-gradient(90deg, rgba(213, 171, 86, 0.1), transparent 56%);
}

.team-person-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: grayscale(1) contrast(1.07) brightness(0.98);
  transform: scale(1.02);
  transition:
    transform 520ms ease,
    filter 520ms ease;
}

.team-person-card:hover .team-person-media img {
  filter: grayscale(0.72) contrast(1.08) brightness(1.04);
  transform: scale(1.055);
}

.team-person-copy {
  position: relative;
  z-index: 1;
  padding: 1rem 0.2rem 0;
}

.team-person-number {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
}

.team-person-number::after {
  width: 42px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(242, 210, 122, 0.72), transparent);
}

.team-person-copy h3 {
  margin: 0.42rem 0 0.28rem;
  font-size: 1.52rem;
}

.team-person-copy p {
  max-width: 22rem;
  margin: 0;
  color: var(--paper-soft);
  font-weight: 700;
  line-height: 1.45;
}

.team-person-focus {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: auto;
  padding: 1rem 0.2rem 0;
}

.team-person-focus span {
  padding: 0.32rem 0.48rem;
  border: 1px solid rgba(213, 171, 86, 0.24);
  border-radius: 999px;
  background: rgba(213, 171, 86, 0.08);
  color: rgba(247, 243, 234, 0.86);
  font-size: 0.74rem;
  font-weight: 760;
}

.check-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.6rem;
}

.check-card h2 {
  font-size: 2rem;
}

.final-cta {
  width: 100%;
  max-width: none;
  padding-top: 3rem;
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
}

.final-cta-inner {
  padding: 2rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(213, 171, 86, 0.23), rgba(101, 216, 255, 0.12)),
    rgba(42, 36, 27, 0.9);
}

.final-cta-inner p {
  max-width: 680px;
  margin: 1rem auto 1.5rem;
}

.page-hero-inner {
  max-width: 860px;
}

.page-hero-inner > p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(247, 243, 234, 0.9);
  font-size: 1.12rem;
  font-weight: 520;
}

.page-hero-proof .page-hero-inner {
  max-width: 1020px;
}

.page-hero-about {
  min-height: 76vh;
  padding-bottom: 7rem;
  background: #060504;
}

.page-hero-about::before {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(5, 4, 3, 0.2) 0%, rgba(5, 4, 3, 0.55) 48%, rgba(5, 4, 3, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.78)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(5, 4, 3, 0.92));
}

.page-hero-about::after {
  position: absolute;
  inset: 17% 11% 17%;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.42) 46%, transparent 74%),
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.68) 29%, rgba(0, 0, 0, 0.68) 71%, transparent);
  filter: blur(13px);
}

.about-hero-bg {
  opacity: 0.62;
  background-position: 52% 50%;
  filter: saturate(0.94) brightness(0.82) contrast(1.04);
  animation: about-bg-drift 18s ease-in-out infinite alternate;
}

.about-hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.about-depth-grid {
  position: absolute;
  inset: 16% 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 94px 94px;
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.68) 18%, rgba(0, 0, 0, 0.68) 82%, transparent);
  opacity: 0.42;
  transform: perspective(900px) rotateX(58deg) translateY(14%);
  transform-origin: 50% 84%;
  animation: about-grid-flow 14s linear infinite;
}

.about-light-sweep {
  position: absolute;
  inset: -12% auto -12% -20%;
  width: 42%;
  background: linear-gradient(
    105deg,
    transparent 0 34%,
    rgba(255, 255, 255, 0.08) 43%,
    rgba(242, 210, 122, 0.23) 50%,
    rgba(101, 216, 255, 0.1) 57%,
    transparent 68%
  );
  filter: blur(10px);
  transform: translateX(-120%) skewX(-8deg);
  animation: about-light-sweep 8.6s ease-in-out infinite;
}

.about-visual-card,
.about-phone-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(5, 4, 3, 0.2);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px) saturate(145%);
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.about-visual-card img,
.about-phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card-network {
  bottom: 12%;
  left: clamp(0.6rem, 7vw, 7rem);
  width: clamp(260px, 24vw, 420px);
  aspect-ratio: 1.42;
  border-radius: 22px;
  opacity: 0.54;
  rotate: -2deg;
  animation: about-card-float 8.8s ease-in-out infinite;
}

.about-card-network img {
  object-position: 50% 52%;
  filter: saturate(0.9) brightness(0.88);
}

.about-phone-frame {
  top: 18%;
  right: clamp(0.5rem, 8vw, 9rem);
  width: clamp(188px, 16vw, 285px);
  aspect-ratio: 9 / 16;
  border-radius: 34px;
  border-width: 3px;
  border-color: rgba(247, 243, 234, 0.38);
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.48), inset 0 0 0 8px rgba(5, 4, 3, 0.82);
  rotate: 4deg;
  animation: about-phone-float 7.4s ease-in-out infinite;
}

.about-phone-frame::before {
  position: absolute;
  top: 0.82rem;
  left: 50%;
  z-index: 3;
  width: 4.2rem;
  height: 1.08rem;
  content: "";
  border-radius: 999px;
  background: rgba(5, 4, 3, 0.84);
  transform: translateX(-50%);
}

.about-phone-frame::after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  height: 0.24rem;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(101, 216, 255, 0.52), rgba(255, 255, 255, 0.3));
  transform-origin: left;
  animation: about-phone-progress 4.8s ease-in-out infinite;
}

.about-phone-frame img {
  object-position: 58% 48%;
  filter: saturate(0.94) brightness(0.78) contrast(1.05);
  transform: scale(1.18);
  animation: about-phone-image 9s ease-in-out infinite alternate;
}

.about-phone-frame span {
  position: absolute;
  right: 0.85rem;
  z-index: 4;
  width: 0.42rem;
  border-radius: 999px;
  background: rgba(247, 243, 234, 0.58);
  box-shadow: 0 0 18px rgba(242, 210, 122, 0.34);
  animation: about-phone-ui 3.9s ease-in-out infinite;
}

.about-phone-frame span:nth-of-type(1) {
  top: 31%;
  height: 2.9rem;
  background: var(--gold-strong);
}

.about-phone-frame span:nth-of-type(2) {
  top: 45%;
  height: 1.7rem;
  animation-delay: -1.1s;
}

.about-phone-frame span:nth-of-type(3) {
  top: 56%;
  height: 1.1rem;
  animation-delay: -2s;
}

.about-network-map {
  position: absolute;
  right: clamp(1rem, 23vw, 29rem);
  bottom: 14%;
  width: clamp(260px, 27vw, 430px);
  height: 180px;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.about-network-map::before,
.about-network-map::after {
  position: absolute;
  left: 12%;
  right: 6%;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(242, 210, 122, 0), rgba(242, 210, 122, 0.62), rgba(101, 216, 255, 0.28));
  transform-origin: left;
  animation: about-link-draw 5.8s ease-in-out infinite;
}

.about-network-map::before {
  top: 38%;
  rotate: -8deg;
}

.about-network-map::after {
  bottom: 32%;
  rotate: 7deg;
  animation-delay: -1.8s;
}

.about-network-map span {
  position: absolute;
  min-width: 118px;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(5, 4, 3, 0.42);
  color: rgba(247, 243, 234, 0.78);
  font-size: 0.78rem;
  font-weight: 780;
  text-align: center;
  backdrop-filter: blur(16px);
  animation: about-label-lift 5.8s ease-in-out infinite;
}

.about-network-map span:nth-child(1) {
  left: 0;
  top: 10%;
}

.about-network-map span:nth-child(2) {
  left: 36%;
  bottom: 0;
  animation-delay: -0.9s;
}

.about-network-map span:nth-child(3) {
  top: 4%;
  right: 0;
  animation-delay: -1.6s;
}

.about-network-map i {
  position: absolute;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: var(--gold-strong);
  box-shadow: 0 0 24px rgba(242, 210, 122, 0.52);
  animation: about-node-pulse 3.6s ease-in-out infinite;
}

.about-network-map i:nth-of-type(1) {
  left: 18%;
  top: 44%;
}

.about-network-map i:nth-of-type(2) {
  left: 48%;
  top: 56%;
  background: var(--cyan);
  animation-delay: -0.8s;
}

.about-network-map i:nth-of-type(3) {
  right: 22%;
  top: 35%;
  animation-delay: -1.4s;
}

.about-network-map i:nth-of-type(4) {
  right: 6%;
  bottom: 36%;
  background: rgba(247, 243, 234, 0.78);
  animation-delay: -2.2s;
}

.about-team-signal {
  position: absolute;
  left: 50%;
  bottom: 10%;
  display: flex;
  gap: 0.55rem;
  transform: translateX(-50%);
}

.about-team-signal span {
  min-width: 76px;
  padding: 0.48rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 243, 234, 0.75);
  font-size: 0.78rem;
  font-weight: 780;
  text-align: center;
  backdrop-filter: blur(16px);
  animation: about-chip-rise 4.8s ease-in-out infinite;
}

.about-team-signal span:nth-child(2) {
  animation-delay: -1.2s;
}

.about-team-signal span:nth-child(3) {
  animation-delay: -2.4s;
}

.page-hero-about .page-hero-inner {
  max-width: 940px;
}

.page-hero-about .hero-actions {
  margin-top: 1.55rem;
}

@keyframes about-bg-drift {
  0% {
    background-position: 47% 53%;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  }

  100% {
    background-position: 56% 47%;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08);
  }
}

@keyframes about-grid-flow {
  to {
    background-position: 94px 94px;
  }
}

@keyframes about-light-sweep {
  0%,
  34%,
  100% {
    opacity: 0;
    transform: translateX(-120%) skewX(-8deg);
  }

  54% {
    opacity: 0.94;
  }

  76% {
    opacity: 0;
    transform: translateX(320%) skewX(-8deg);
  }
}

@keyframes about-card-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes about-phone-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -16px;
  }
}

@keyframes about-phone-progress {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.22);
  }

  52% {
    opacity: 0.88;
    transform: scaleX(1);
  }
}

@keyframes about-phone-image {
  0% {
    object-position: 56% 46%;
  }

  100% {
    object-position: 62% 52%;
  }
}

@keyframes about-phone-ui {
  0%,
  100% {
    opacity: 0.48;
    transform: scaleY(0.72);
  }

  50% {
    opacity: 0.92;
    transform: scaleY(1.06);
  }
}

@keyframes about-link-draw {
  0%,
  100% {
    opacity: 0.28;
    transform: scaleX(0.24);
  }

  48%,
  72% {
    opacity: 0.82;
    transform: scaleX(1);
  }
}

@keyframes about-label-lift {
  0%,
  100% {
    opacity: 0.58;
    translate: 0 0;
  }

  50% {
    opacity: 1;
    translate: 0 -7px;
  }
}

@keyframes about-node-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.72);
  }

  48% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes about-chip-rise {
  0%,
  100% {
    opacity: 0.56;
    transform: translateY(0);
  }

  50% {
    opacity: 0.94;
    transform: translateY(-6px);
  }
}

.page-hero-references {
  min-height: 76vh;
  padding-bottom: 7rem;
  background: #050403;
}

.page-hero-references::before {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(5, 4, 3, 0.03) 0%, rgba(5, 4, 3, 0.26) 50%, rgba(5, 4, 3, 0.64) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.24)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(5, 4, 3, 0.68));
}

.page-hero-references::after {
  position: absolute;
  inset: 17% 12% 17%;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.42) 48%, transparent 74%),
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.68) 30%, rgba(0, 0, 0, 0.68) 70%, transparent);
  filter: blur(13px);
}

.references-hero-bg {
  opacity: 0.96;
  background-position: 54% 50%;
  filter: saturate(1) brightness(1.08) contrast(1.02);
  animation: references-bg-drift 18s ease-in-out infinite alternate;
}

.references-hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.references-depth-grid {
  position: absolute;
  inset: 18% 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.7) 18%, rgba(0, 0, 0, 0.7) 82%, transparent);
  opacity: 0.42;
  transform: perspective(900px) rotateX(58deg) translateY(16%);
  transform-origin: 50% 82%;
  animation: references-grid-flow 14s linear infinite;
}

.references-light-sweep {
  position: absolute;
  inset: -10% auto -10% -18%;
  width: 44%;
  background: linear-gradient(
    105deg,
    transparent 0 34%,
    rgba(255, 255, 255, 0.08) 43%,
    rgba(242, 210, 122, 0.24) 50%,
    rgba(101, 216, 255, 0.1) 57%,
    transparent 67%
  );
  filter: blur(10px);
  transform: translateX(-120%) skewX(-8deg);
  animation: references-light-sweep 8.2s ease-in-out infinite;
}

.reference-proof-card {
  position: absolute;
  width: clamp(160px, 16vw, 245px);
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 0.32rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 82% 12%, rgba(242, 210, 122, 0.16), transparent 8rem);
  color: rgba(247, 243, 234, 0.78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px) saturate(150%);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  animation: references-card-float 8.4s ease-in-out infinite;
}

.reference-proof-card span {
  color: rgba(247, 243, 234, 0.7);
  font-size: 0.78rem;
  font-weight: 760;
}

.reference-proof-card strong {
  color: var(--gold-strong);
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1;
}

.reference-proof-card i {
  width: 72%;
  height: 4px;
  display: block;
  margin-top: 0.36rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(242, 210, 122, 0.88), rgba(101, 216, 255, 0.32)) left center / 82% 100% no-repeat,
    rgba(255, 255, 255, 0.16);
  transform-origin: left;
  animation: references-meter 4.8s ease-in-out infinite;
}

.proof-card-views {
  top: 26%;
  left: clamp(1rem, 7vw, 7rem);
  rotate: -2.2deg;
}

.proof-card-likes {
  right: clamp(1rem, 7vw, 7rem);
  bottom: 17%;
  rotate: 2.5deg;
  animation-delay: -2.6s;
}

.proof-card-followers {
  top: 19%;
  right: clamp(2rem, 16vw, 20rem);
  width: clamp(150px, 14vw, 215px);
  min-height: 98px;
  opacity: 0.72;
  rotate: -1deg;
  animation-delay: -4.4s;
}

.reference-analytics-panel {
  position: absolute;
  bottom: 13%;
  left: clamp(1rem, 13vw, 14rem);
  width: clamp(240px, 26vw, 410px);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(5, 4, 3, 0.36);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px) saturate(145%);
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.reference-analytics-panel > span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gold-strong);
  font-size: 0.8rem;
  font-weight: 820;
}

.reference-analytics-panel div {
  height: 96px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 0.56rem;
}

.reference-analytics-panel i {
  height: var(--h);
  min-height: 22px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, rgba(242, 210, 122, 0.82), rgba(255, 255, 255, 0.16));
  box-shadow: 0 0 28px rgba(242, 210, 122, 0.16);
  transform-origin: bottom;
  animation: references-bar-rise 4.2s ease-in-out infinite;
}

.reference-analytics-panel i:nth-child(2) {
  animation-delay: -0.5s;
}

.reference-analytics-panel i:nth-child(3) {
  animation-delay: -1.1s;
}

.reference-analytics-panel i:nth-child(4) {
  animation-delay: -1.7s;
}

.reference-analytics-panel i:nth-child(5) {
  animation-delay: -2.2s;
}

.reference-result-path {
  position: absolute;
  right: 20%;
  bottom: 9%;
  width: min(440px, 32vw);
  height: 150px;
}

.reference-result-path::before {
  position: absolute;
  right: 8%;
  bottom: 18%;
  left: 4%;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(242, 210, 122, 0), rgba(242, 210, 122, 0.8), rgba(101, 216, 255, 0.34));
  transform-origin: left;
  animation: references-path-draw 5.6s ease-in-out infinite;
}

.reference-result-path span {
  position: absolute;
  min-width: 94px;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(5, 4, 3, 0.42);
  color: rgba(247, 243, 234, 0.76);
  font-size: 0.78rem;
  font-weight: 760;
  text-align: center;
  backdrop-filter: blur(16px);
  animation: references-label-lift 5.6s ease-in-out infinite;
}

.reference-result-path span:nth-child(1) {
  bottom: 0;
  left: 0;
}

.reference-result-path span:nth-child(2) {
  bottom: 42%;
  left: 38%;
  animation-delay: -0.7s;
}

.reference-result-path span:nth-child(3) {
  right: 0;
  top: 0;
  animation-delay: -1.4s;
}

@keyframes references-bg-drift {
  0% {
    background-position: 50% 52%;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  }

  100% {
    background-position: 58% 46%;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08);
  }
}

@keyframes references-grid-flow {
  to {
    background-position: 96px 96px;
  }
}

@keyframes references-light-sweep {
  0%,
  32%,
  100% {
    opacity: 0;
    transform: translateX(-120%) skewX(-8deg);
  }

  52% {
    opacity: 0.96;
  }

  74% {
    opacity: 0;
    transform: translateX(310%) skewX(-8deg);
  }
}

@keyframes references-card-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

@keyframes references-meter {
  0%,
  100% {
    opacity: 0.52;
    transform: scaleX(0.62);
  }

  52% {
    opacity: 0.96;
    transform: scaleX(1);
  }
}

@keyframes references-bar-rise {
  0%,
  100% {
    opacity: 0.72;
    transform: scaleY(0.78);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.08);
  }
}

@keyframes references-path-draw {
  0%,
  100% {
    opacity: 0.28;
    transform: scaleX(0.24);
  }

  48%,
  72% {
    opacity: 0.86;
    transform: scaleX(1);
  }
}

@keyframes references-label-lift {
  0%,
  100% {
    opacity: 0.58;
    translate: 0 0;
  }

  50% {
    opacity: 1;
    translate: 0 -7px;
  }
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(820px, 100%);
  margin: 1.65rem auto 0;
}

.hero-proof-grid span {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 0.28rem;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(247, 243, 234, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(145%);
}

.hero-proof-grid strong {
  display: block;
  color: var(--gold-strong);
  font-size: 1.45rem;
  line-height: 1;
}

.google-hero-rating {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 1rem;
  padding: 0.62rem 0.82rem;
  border: 1px solid rgba(242, 210, 122, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(145%);
}

.google-hero-rating span {
  color: var(--gold-strong);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.google-hero-rating strong {
  color: var(--paper);
  white-space: nowrap;
}

.google-hero-rating em {
  color: rgba(247, 243, 234, 0.72);
  font-style: normal;
  font-size: 0.88rem;
}

.visual-stack {
  position: relative;
  min-height: 520px;
}

.visual-stack img {
  position: absolute;
  width: 245px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.visual-stack img:first-child {
  left: 10%;
  top: 4%;
  rotate: -5deg;
}

.visual-stack img:last-child {
  right: 5%;
  bottom: 0;
  rotate: 5deg;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.timeline li {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.timeline h3 {
  min-height: 3rem;
  display: flex;
  align-items: flex-start;
  margin: 0.8rem 0 0.5rem;
}

.timeline p {
  flex: 1 1 auto;
}

.timeline a {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  color: var(--gold-strong);
  font-weight: 760;
  line-height: 1.2;
  white-space: nowrap;
}

.timeline a:hover {
  color: var(--cyan);
}

.strategy-orbit {
  position: relative;
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  overflow: hidden;
}

.strategy-orbit::before,
.strategy-orbit::after {
  position: absolute;
  inset: 18%;
  content: "";
  border: 1px solid rgba(213, 171, 86, 0.28);
  border-radius: 50%;
}

.strategy-orbit::after {
  inset: 31%;
  border-color: rgba(101, 216, 255, 0.22);
}

.strategy-orbit div {
  position: absolute;
  width: 132px;
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(28, 24, 18, 0.86);
  color: var(--paper);
  font-weight: 800;
}

.strategy-orbit div:nth-child(1) {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.strategy-orbit div:nth-child(2) {
  top: 45%;
  right: 8%;
}

.strategy-orbit div:nth-child(3) {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.strategy-orbit div:nth-child(4) {
  top: 45%;
  left: 8%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.package-decision-section {
  isolation: isolate;
  overflow: hidden;
}

.package-decision-section::before {
  position: absolute;
  top: 6rem;
  right: -12rem;
  z-index: -2;
  width: min(900px, 58vw);
  aspect-ratio: 1.55;
  content: "";
  border-radius: 44px;
  background: url("leistungen-social-system.jpg") center / cover no-repeat;
  filter: saturate(0.68) sepia(0.18) brightness(1.12);
  opacity: 0.16;
  transform: rotate(-7deg);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9), transparent 73%);
}

.package-decision-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 24%, rgba(213, 171, 86, 0.11), transparent 26rem),
    radial-gradient(circle at 76% 62%, rgba(101, 216, 255, 0.075), transparent 22rem),
    linear-gradient(180deg, rgba(255, 253, 248, 0.7), rgba(246, 239, 227, 0.78));
}

.package-chooser {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.2rem 0 1.25rem;
}

.package-choice {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 1.35rem;
  border: 1px solid rgba(23, 19, 12, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(255, 250, 240, 0.72)),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    0 22px 70px rgba(48, 36, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(125%);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.package-choice::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 36%, rgba(255, 255, 255, 0.74) 47%, transparent 59%),
    radial-gradient(circle at 18% 14%, rgba(213, 171, 86, 0.16), transparent 16rem);
  opacity: 0.42;
  transform: translateX(-26%);
  transition: transform 700ms ease, opacity 240ms ease;
}

.package-choice:hover {
  transform: translateY(-5px);
  border-color: rgba(156, 116, 45, 0.28);
  box-shadow: 0 30px 92px rgba(48, 36, 18, 0.15);
}

.package-choice:hover::before {
  opacity: 0.72;
  transform: translateX(28%);
}

.package-choice.is-recommended {
  border-color: rgba(183, 126, 39, 0.36);
  background:
    linear-gradient(180deg, rgba(213, 171, 86, 0.18), rgba(255, 253, 248, 0.8)),
    rgba(255, 255, 255, 0.74);
}

.package-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 850;
}

.package-choice-head,
.package-fit,
.package-price,
.package-choice ul {
  position: relative;
  z-index: 1;
}

.package-choice-head {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.package-choice-head p {
  margin: 0;
  color: var(--text-dark) !important;
  font-weight: 850;
}

.package-reel-count {
  display: grid;
  justify-items: center;
  gap: 0.18rem;
  margin: 0.65rem auto 0.75rem;
  text-align: center;
}

.package-reel-count strong {
  color: var(--gold-deep);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.9;
}

.package-reel-count span {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 750;
  text-transform: uppercase;
}

.package-fit {
  min-height: 3.2rem;
  margin: 0 0 1.15rem;
  color: var(--text-dark) !important;
  font-size: 1.05rem;
  font-weight: 760;
}

.package-price {
  margin: 1rem 0 1.15rem;
  color: var(--text-dark);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0;
}

.package-price small {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 650;
}

.package-choice ul {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-choice li {
  display: grid;
  gap: 0.16rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(23, 19, 12, 0.1);
}

.package-choice li span {
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 820;
  text-transform: uppercase;
}

.package-choice li b {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

.package-detail-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  margin: 2rem 0 0.8rem;
  padding-inline: 0.04rem;
}

.package-detail-head span {
  color: var(--gold-deep);
  font-weight: 850;
  text-transform: uppercase;
}

.package-detail-head p {
  max-width: none;
  margin: 0;
  text-align: right;
  white-space: nowrap;
  font-size: 0.95rem;
}

.package-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(32, 28, 21, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(150%);
}

.package-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
}

.package-table th,
.package-table td {
  width: 25%;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: top;
  text-align: left;
}

.package-table th:last-child,
.package-table td:last-child {
  border-right: 0;
}

.package-table thead th {
  position: relative;
  z-index: 1;
  background: rgba(26, 23, 17, 0.96);
  color: var(--paper);
  font-size: 1.05rem;
}

.package-table thead th:not(:first-child) {
  text-align: center;
}

.package-table tbody tr:first-child th {
  background: rgba(23, 19, 12, 0.03);
}

.package-table tbody tr:first-child td {
  color: var(--text-dark);
  font-weight: 850;
  text-align: center;
}

.package-tier-label span {
  display: inline-flex;
  min-height: 2.4rem;
  align-items: center;
  justify-content: center;
  padding: 0.46rem 0.9rem;
  border-radius: 999px;
  line-height: 1;
}

.package-table-reels {
  text-align: center !important;
  vertical-align: middle !important;
}

.table-reel-count {
  display: grid;
  justify-items: center;
  gap: 0.18rem;
  text-align: center;
}

.table-reel-count strong {
  color: var(--gold-deep);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.9;
}

.table-reel-count small {
  color: var(--text-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.package-table thead th span {
  display: table;
  margin-bottom: 0.35rem;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 820;
}

.package-table tbody th {
  color: var(--gold-strong);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.package-table td {
  color: var(--paper-soft);
}

.package-table tr:nth-child(odd) td,
.package-table tr:nth-child(odd) th {
  background: rgba(255, 255, 255, 0.03);
}

.package-guarantee-note {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(23, 19, 12, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 18px 58px rgba(48, 36, 18, 0.08);
  backdrop-filter: blur(14px) saturate(120%);
}

.package-guarantee-note strong {
  color: var(--gold-deep);
  font-size: 0.92rem;
}

.package-guarantee-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.package-mobile {
  display: none;
}

.price-card {
  position: relative;
  padding: 1.35rem;
}

.price-card.featured {
  border-color: rgba(213, 171, 86, 0.62);
  background: rgba(45, 38, 25, 0.86);
}

.price-card .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
}

.price-card strong {
  display: block;
  margin: 1rem 0;
  color: var(--gold-strong);
  font-size: 2rem;
  line-height: 1;
}

.price-card small {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.price-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.15rem 0;
  list-style: none;
}

.price-card li {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-card li span {
  color: var(--muted);
  font-size: 0.82rem;
}

.price-card li b {
  color: var(--paper);
}

.note {
  max-width: 780px;
  margin: 1.4rem auto 0;
  text-align: center;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.topic-cloud span {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.article-section {
  overflow: visible;
}

.article {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.article-shell {
  display: grid;
  gap: 1.15rem;
}

.article-lead-card,
.article-block,
.article-side,
.article-cta {
  border: 1px solid rgba(156, 116, 45, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 18px 58px rgba(48, 36, 18, 0.1);
}

.article-lead-card {
  width: min(980px, 100%);
  margin-inline: auto;
  padding: 1.55rem;
}

.article .lead {
  max-width: 820px;
  margin: 0;
  color: var(--text-dark);
  font-size: 1.24rem;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 1rem;
  align-items: start;
}

.article-main {
  display: grid;
  gap: 0.9rem;
}

.article-block {
  position: relative;
  min-height: 176px;
  padding: 1.35rem 1.35rem 1.35rem 4.3rem;
}

.article-block span {
  position: absolute;
  top: 1.48rem;
  left: 1.35rem;
  color: var(--gold-deep);
  font-size: 0.86rem;
  font-weight: 850;
}

.article-block span::after {
  position: absolute;
  top: 0.55rem;
  left: 1.95rem;
  width: 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(156, 116, 45, 0.66), transparent);
}

.article-block h2 {
  max-width: 720px;
  margin-bottom: 0.72rem;
  font-size: 1.45rem;
  line-height: 1.16;
}

.article-block p {
  max-width: 760px;
}

.article-side {
  position: sticky;
  top: 7.5rem;
  padding: 1.25rem;
}

.article-side h2 {
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.article-side ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-side li {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(23, 19, 12, 0.1);
}

.article-side li:first-child {
  padding-top: 0;
  border-top: 0;
}

.article-side li span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 850;
}

.article-side strong {
  display: block;
  color: var(--text-dark);
}

.article-side p {
  margin: 0.25rem 0 0;
}

.article-cta {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 1.7rem;
  text-align: center;
  background:
    radial-gradient(circle at 82% 12%, rgba(213, 171, 86, 0.18), transparent 16rem),
    rgba(255, 253, 248, 0.82);
}

.article-cta p {
  max-width: 680px;
  margin: 0.65rem auto 1.2rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.case-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.35rem;
  isolation: isolate;
}

.case-card:not(.case-card-featured) {
  display: grid;
  grid-template-rows: 74px minmax(2.8rem, auto) minmax(4.8rem, auto) auto minmax(7.35rem, auto) auto;
  row-gap: 0.85rem;
  align-content: start;
}

.case-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(213, 171, 86, 0.11), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(213, 171, 86, 0.14), transparent 15rem);
  opacity: 0;
  transition: opacity 220ms ease;
}

.case-card::after {
  position: absolute;
  top: -3.2rem;
  right: -3.2rem;
  z-index: 0;
  width: 10.5rem;
  height: 10.5rem;
  content: "";
  pointer-events: none;
  border-radius: 999px;
  background:
    conic-gradient(from 145deg, transparent 0 58%, rgba(213, 171, 86, 0.22) 66%, transparent 78%),
    radial-gradient(circle, rgba(213, 171, 86, 0.18), transparent 66%);
  opacity: 0.32;
  transform: scale(0.86);
  transition:
    opacity 260ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-card:hover::before,
.case-card-featured::before {
  opacity: 1;
}

.case-card:hover::after {
  opacity: 0.74;
  transform: scale(1);
  animation: case-corner-turn 7s linear infinite;
}

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

.case-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
  margin-bottom: 0.9rem;
}

.case-card:not(.case-card-featured) .case-card-top {
  margin-bottom: 0;
}

.case-card-meta {
  min-width: 0;
}

.case-card-top .mini-kicker {
  margin-bottom: 0.34rem;
}

.case-badge {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 0.28rem 0.62rem;
  border: 1px solid rgba(156, 116, 45, 0.22);
  border-radius: 999px;
  background: rgba(213, 171, 86, 0.13);
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 850;
}

.case-logo-chip {
  position: relative;
  flex: 0 0 auto;
  width: clamp(128px, 18vw, 190px);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.7rem;
  border: 1px solid rgba(156, 116, 45, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(246, 239, 227, 0.7)),
    radial-gradient(circle at 20% 0%, rgba(213, 171, 86, 0.12), transparent 9rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 42px rgba(48, 36, 18, 0.08);
  transform-origin: 100% 0;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 260ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-logo-chip::before {
  position: absolute;
  inset: -55%;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(108deg, transparent 28%, rgba(255, 255, 255, 0.76) 48%, transparent 68%);
  opacity: 0.62;
  transform: translateX(-74%) rotate(10deg);
  transition: transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-logo-chip::after {
  position: absolute;
  top: 0.42rem;
  right: 0.42rem;
  z-index: 2;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  border-radius: 999px;
  background: var(--gold-strong);
  box-shadow:
    0 0 0 5px rgba(213, 171, 86, 0.12),
    0 0 26px rgba(213, 171, 86, 0.54);
  opacity: 0.5;
  transition:
    opacity 220ms ease,
    transform 260ms ease;
}

.case-card:hover .case-logo-chip {
  border-color: rgba(156, 116, 45, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(248, 241, 229, 0.82)),
    radial-gradient(circle at 20% 0%, rgba(213, 171, 86, 0.18), transparent 9rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 54px rgba(48, 36, 18, 0.15);
  transform: translateY(-2px) scale(1.035);
}

.case-logo-chip:focus-visible {
  outline: 2px solid rgba(156, 116, 45, 0.58);
  outline-offset: 4px;
}

.case-card:hover .case-logo-chip::before {
  transform: translateX(74%) rotate(10deg);
}

.case-card:hover .case-logo-chip::after {
  opacity: 1;
  transform: scale(1.18);
}

.case-logo-chip img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(48, 36, 18, 0.08));
  transition:
    filter 260ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-card:hover .case-logo-chip img {
  filter: drop-shadow(0 10px 24px rgba(48, 36, 18, 0.14));
  transform: scale(1.045);
}

.case-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  column-gap: 2.2rem;
  align-items: center;
  padding: 1.75rem;
}

.case-card-featured h3,
.case-card-featured > p {
  grid-column: 1;
}

.case-card-featured .case-card-top {
  grid-column: 1 / -1;
}

.case-card-featured dl,
.case-card-featured .case-metrics {
  grid-column: 2;
}

.case-card-featured .case-logo-chip {
  width: min(260px, 28vw);
  height: 82px;
  padding: 0.7rem 0.95rem;
}

.case-card-featured h3 {
  max-width: 520px;
  font-size: 2rem;
}

.case-card-featured > p {
  max-width: 560px;
  font-size: 1.05rem;
}

.case-card:not(.case-card-featured) h3 {
  display: flex;
  align-items: flex-end;
  min-height: 2.8rem;
}

.case-card:not(.case-card-featured) > p {
  align-self: start;
  min-height: 4.8rem;
  margin: 0;
}

.case-trust-slot {
  min-height: 2.55rem;
  display: flex;
  align-items: center;
}

.case-trust-slot.is-empty {
  pointer-events: none;
}

.case-card .case-trust-slot .google-review-badge {
  align-self: start;
}

.case-card-featured .case-trust-slot {
  grid-column: 1;
}

.case-card dl {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0;
}

.case-card:not(.case-card-featured) dl {
  align-self: start;
  margin: 0;
}

.case-card dt {
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.case-card dd {
  margin: 0;
  color: var(--paper-soft);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.case-card:not(.case-card-featured) .case-metrics {
  align-self: end;
}

.case-metrics span {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  padding: 0.62rem 0.54rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-strong);
  text-align: center;
}

.case-metrics strong {
  display: block;
  color: inherit;
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  font-weight: 880;
  line-height: 1;
  letter-spacing: 0;
}

.case-metrics small {
  display: block;
  color: rgba(247, 243, 234, 0.76);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: 0;
}

@keyframes case-corner-turn {
  to {
    rotate: 1turn;
  }
}

.profile-card {
  padding: 1.35rem;
}

.founder-showcase {
  display: grid;
  gap: 1.05rem;
}

.founder-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #11100d;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.founder-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.96) 0%, rgba(5, 4, 3, 0.82) 34%, rgba(5, 4, 3, 0.2) 66%, rgba(5, 4, 3, 0.08) 100%),
    linear-gradient(180deg, rgba(213, 171, 86, 0.06), rgba(0, 0, 0, 0.15));
}

.founder-card::after {
  position: absolute;
  inset: 1rem;
  z-index: 2;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(213, 171, 86, 0.16);
  border-radius: calc(var(--radius) - 2px);
}

.founder-card:hover {
  transform: translateY(-5px);
  border-color: rgba(213, 171, 86, 0.42);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.52);
}

.founder-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 16%;
  filter: contrast(1.05) brightness(0.82);
  transform: scale(1.015);
  transition:
    transform 520ms ease,
    filter 520ms ease;
}

.founder-card:hover img {
  transform: scale(1.045);
  filter: contrast(1.08) brightness(0.9);
}

.founder-content {
  position: relative;
  z-index: 3;
  max-width: 520px;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.2rem;
}

.founder-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(213, 171, 86, 0.42);
  border-radius: 50%;
  background: rgba(213, 171, 86, 0.12);
  color: var(--gold-strong);
  font-weight: 850;
}

.founder-content h3 {
  margin-bottom: 0.75rem;
  font-size: 2.25rem;
}

.founder-content p:last-child {
  max-width: 470px;
  color: rgba(247, 243, 234, 0.78);
}

.oversized {
  padding: 1.6rem;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  list-style: none;
}

.check-list li {
  padding-left: 1.8rem;
  position: relative;
  color: var(--paper-soft);
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold-strong);
  content: "✓";
}

.needs-check-section {
  position: relative;
  overflow: hidden;
  align-items: center;
}

.needs-check-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 28%, rgba(213, 171, 86, 0.13), transparent 20rem),
    radial-gradient(circle at 78% 58%, rgba(101, 216, 255, 0.08), transparent 18rem);
}

.check-copy {
  position: relative;
  z-index: 1;
}

.check-copy h2 {
  max-width: 520px;
}

.check-copy .check-list {
  max-width: 620px;
}

.section:not(.dark):not(.final-cta) .check-list li {
  color: var(--text-soft);
  font-weight: 650;
}

.section:not(.dark):not(.final-cta) .check-list li::before {
  color: var(--gold-deep);
}

.check-visual {
  position: relative;
  width: min(540px, 100%);
  height: 245px;
  margin-top: 1.65rem;
  pointer-events: none;
}

.check-phone {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 5px solid rgba(23, 19, 12, 0.82);
  border-radius: 24px;
  background: rgba(23, 19, 12, 0.9);
  box-shadow: 0 24px 58px rgba(48, 36, 18, 0.18);
  animation: check-phone-float 7s ease-in-out infinite;
}

.check-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04) brightness(0.94);
  transform: scale(1.04);
  animation: check-image-drift 8s ease-in-out infinite alternate;
}

.check-phone-a {
  top: 10px;
  left: 7%;
  width: 128px;
  aspect-ratio: 9 / 16;
  rotate: -7deg;
}

.check-phone-b {
  top: 34px;
  left: 31%;
  width: 102px;
  aspect-ratio: 9 / 16;
  rotate: 5deg;
  animation-delay: -2.2s;
}

.check-visual-panel {
  position: absolute;
  right: 2%;
  bottom: 26px;
  width: min(260px, 52%);
  display: grid;
  gap: 0.55rem;
  padding: 0.92rem;
  border: 1px solid rgba(156, 116, 45, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 50px rgba(48, 36, 18, 0.12);
  backdrop-filter: blur(18px) saturate(140%);
}

.check-visual-panel span {
  height: 8px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(156, 116, 45, 0.62), rgba(101, 216, 255, 0.2));
  color: transparent;
  transform-origin: left;
  animation: check-line-fill 4.8s ease-in-out infinite;
}

.check-visual-panel span:nth-child(2) {
  width: 78%;
  animation-delay: -0.8s;
}

.check-visual-panel span:nth-child(3) {
  width: 92%;
  animation-delay: -1.4s;
}

.check-visual-panel i {
  position: absolute;
  top: -0.38rem;
  right: -0.38rem;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  background: var(--gold-strong);
  box-shadow: 0 0 0 7px rgba(213, 171, 86, 0.13), 0 0 30px rgba(213, 171, 86, 0.52);
}

.quiz-shell {
  padding: 1.3rem;
}

.needs-check-section .quiz-shell {
  position: relative;
  z-index: 1;
  padding: 1.55rem;
  border-color: rgba(23, 19, 12, 0.11);
  background:
    radial-gradient(circle at 92% 12%, rgba(213, 171, 86, 0.11), transparent 14rem),
    rgba(255, 253, 248, 0.96);
  box-shadow: 0 26px 80px rgba(48, 36, 18, 0.14);
  color: var(--text-dark);
}

.quiz-progress {
  height: 7px;
  margin-bottom: 1.35rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.quiz-progress span {
  display: block;
  height: 100%;
  width: 14%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transition: width 250ms ease;
}

.quiz-question h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.needs-check-section .quiz-question h2 {
  color: var(--text-dark);
  text-shadow: none;
}

.quiz-options {
  display: grid;
  gap: 0.65rem;
}

.quiz-options button {
  width: 100%;
  min-height: 54px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(23, 19, 12, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  color: var(--text-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 720;
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.quiz-options button:hover {
  border-color: rgba(156, 116, 45, 0.32);
  background: #fffdf8;
  transform: translateY(-1px);
}

.quiz-options button[aria-pressed="true"] {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(213, 171, 86, 0.2), rgba(255, 253, 248, 0.92));
}

.quiz-controls {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}

.quiz-controls .btn-ghost {
  border-color: rgba(23, 19, 12, 0.1);
  background: rgba(255, 255, 255, 0.55);
  color: var(--text-dark);
}

.quiz-controls .btn:disabled {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
}

.quiz-result {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(213, 171, 86, 0.35);
  border-radius: var(--radius);
  background: rgba(213, 171, 86, 0.12);
  color: var(--text-dark);
}

.quiz-result p {
  color: var(--text-soft);
}

@keyframes check-phone-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes check-image-drift {
  0% {
    transform: scale(1.04) translateY(0);
  }

  100% {
    transform: scale(1.1) translateY(-2%);
  }
}

@keyframes check-line-fill {
  0%,
  100% {
    opacity: 0.48;
    transform: scaleX(0.52);
  }

  48% {
    opacity: 0.95;
    transform: scaleX(1);
  }
}

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

.contact-card,
.contact-form {
  padding: 1.4rem;
}

.contact-card .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.social-links a {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-strong);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--paper);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  font: inherit;
  padding: 0.85rem 0.9rem;
  outline: none;
}

.contact-form select {
    width: 100%;
    border-radius: var(--radius);
    font: inherit;
    padding: 0.85rem 0.9rem;
    outline: none;
    border-color: rgba(23, 19, 12, 0.14);
    background: rgba(255, 255, 255, 0.78);
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

section.form-note {
    font-size: 28px;
    text-align: center;
    background: #00800070;
    padding: 0.5rem 0;
}
section.form-note.error {
	background: #ff000057;
}

.consent {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  font-weight: 500 !important;
}

.consent input {
  width: auto;
  margin-top: 0.35rem;
}

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

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  color: var(--paper);
  cursor: pointer;
  font-weight: 780;
}

.faq-list summary::after {
  content: "+";
  color: var(--gold-strong);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding: 0 1.1rem 1rem;
}

.legal-page {
  max-width: 880px;
  padding: 1.5rem;
}

.legal-page h2 {
  margin: 1.5rem 0 0.55rem;
  font-size: 1.45rem;
}

.legal-page h2:first-child {
  margin-top: 0;
}

.section.legal-page {
  max-width: none;
  padding: 6.2rem max(1rem, calc((100% - 880px) / 2));
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at calc(50% - 280px) 10%, rgba(213, 171, 86, 0.1), transparent 28rem),
    linear-gradient(180deg, var(--surface) 0%, #f6efe3 100%);
  box-shadow: none;
  backdrop-filter: none;
}

.section:not(.dark):not(.final-cta) h2,
.section:not(.dark):not(.final-cta) h3,
.section:not(.dark):not(.final-cta) .signal-stack strong,
.section:not(.dark):not(.final-cta) .price-card li b {
  color: var(--text-dark);
  text-shadow: none;
}

.section:not(.dark):not(.final-cta) p,
.section:not(.dark):not(.final-cta) .price-card li span,
.section:not(.dark):not(.final-cta) .form-note {
  color: var(--text-soft);
}

.section:not(.dark):not(.final-cta) .eyebrow,
.section:not(.dark):not(.final-cta) .mini-kicker,
.section:not(.dark):not(.final-cta) .text-link,
.section:not(.dark):not(.final-cta) .signal-stack span,
.section:not(.dark):not(.final-cta) .timeline span,
.section:not(.dark):not(.final-cta) .process-line span,
.section:not(.dark):not(.final-cta) .case-card dt {
  color: var(--gold-deep);
}

.section:not(.dark):not(.final-cta) .signal-stack div,
.section:not(.dark):not(.final-cta) .glass-card,
.section:not(.dark):not(.final-cta) .price-card,
.section:not(.dark):not(.final-cta) .case-card,
.section:not(.dark):not(.final-cta) .profile-card,
.section:not(.dark):not(.final-cta) .contact-card,
.section:not(.dark):not(.final-cta) .contact-form,
.section:not(.dark):not(.final-cta) .quiz-shell,
.section:not(.dark):not(.final-cta) .check-card,
.section:not(.dark):not(.final-cta) .legal-page,
.section:not(.dark):not(.final-cta) .process-line li,
.section:not(.dark):not(.final-cta) .timeline li,
.section:not(.dark):not(.final-cta) .faq-list details {
  border-color: rgba(23, 19, 12, 0.1);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 58px rgba(48, 36, 18, 0.1);
  color: var(--text-dark);
}

.section:not(.dark):not(.final-cta) .glass-card:hover,
.section:not(.dark):not(.final-cta) .case-card:hover,
.section:not(.dark):not(.final-cta) .profile-card:hover {
  border-color: rgba(156, 116, 45, 0.35);
  background: #fffdf8;
  box-shadow: 0 24px 72px rgba(48, 36, 18, 0.14);
}

.section.process-band:not(.dark):not(.final-cta) .process-line li {
  border-color: rgba(114, 81, 29, 0.16);
  background: rgba(255, 253, 248, 0.72);
  box-shadow:
    0 24px 80px rgba(49, 37, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.section.process-band:not(.dark):not(.final-cta) .process-line li:hover {
  border-color: rgba(183, 126, 39, 0.28);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 30px 90px rgba(49, 37, 20, 0.14);
}

.section:not(.dark):not(.final-cta) blockquote {
  border-left-color: var(--gold-deep);
  background: rgba(255, 253, 248, 0.78);
  color: var(--text-dark);
  box-shadow: 0 16px 50px rgba(48, 36, 18, 0.08);
}

.section:not(.dark):not(.final-cta) blockquote cite,
.section:not(.dark):not(.final-cta) .case-card dd {
  color: var(--text-soft);
}

.section:not(.dark):not(.final-cta) .metric-row div,
.section:not(.dark):not(.final-cta) .case-metrics span,
.section:not(.dark):not(.final-cta) .topic-cloud span,
.section:not(.dark):not(.final-cta) .social-links a {
  border-color: rgba(156, 116, 45, 0.18);
  background: rgba(255, 255, 255, 0.58);
  color: var(--gold-deep);
  box-shadow: 0 16px 50px rgba(48, 36, 18, 0.08);
}

.section:not(.dark):not(.final-cta) .metric-row strong,
.section:not(.dark):not(.final-cta) .case-metrics strong,
.section:not(.dark):not(.final-cta) .price-card strong {
  color: var(--gold-deep);
}

.section:not(.dark):not(.final-cta) .case-metrics small {
  color: var(--text-dark);
}

.section:not(.dark):not(.final-cta) .metric-row span {
  color: var(--text-dark);
}

.section:not(.dark):not(.final-cta) .package-table-wrap {
  border-color: rgba(23, 19, 12, 0.12);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 58px rgba(48, 36, 18, 0.1);
}

.section:not(.dark):not(.final-cta) .package-table thead th {
  background: #17130c;
  color: var(--paper);
}

.section:not(.dark):not(.final-cta) .package-table th,
.section:not(.dark):not(.final-cta) .package-table td {
  border-color: rgba(23, 19, 12, 0.1);
}

.section:not(.dark):not(.final-cta) .package-table tbody th {
  color: var(--gold-deep);
}

.section:not(.dark):not(.final-cta) .package-table td {
  color: var(--text-soft);
}

.section:not(.dark):not(.final-cta) .package-table tr:nth-child(odd) td,
.section:not(.dark):not(.final-cta) .package-table tr:nth-child(odd) th {
  background: rgba(156, 116, 45, 0.055);
}

.section:not(.dark):not(.final-cta) .package-table tbody tr.package-row-name td.package-tier-label {
  border-bottom-color: rgba(23, 19, 12, 0.12);
  text-align: center;
}

.section:not(.dark):not(.final-cta) .package-table tbody tr.package-row-name td.package-tier-starter {
  background:
    linear-gradient(135deg, rgba(173, 113, 52, 0.18), rgba(255, 253, 248, 0.88)),
    rgba(255, 253, 248, 0.82);
}

.section:not(.dark):not(.final-cta) .package-table tbody tr.package-row-name td.package-tier-creator {
  background:
    linear-gradient(135deg, rgba(156, 160, 165, 0.2), rgba(255, 253, 248, 0.9)),
    rgba(255, 253, 248, 0.82);
}

.section:not(.dark):not(.final-cta) .package-table tbody tr.package-row-name td.package-tier-business {
  background:
    linear-gradient(135deg, rgba(213, 171, 86, 0.26), rgba(255, 253, 248, 0.9)),
    rgba(255, 253, 248, 0.82);
}

.section:not(.dark):not(.final-cta) .package-table tbody tr.package-row-name td.package-tier-starter span {
  background: rgba(173, 113, 52, 0.14);
  color: #7f5128;
}

.section:not(.dark):not(.final-cta) .package-table tbody tr.package-row-name td.package-tier-creator span {
  background: rgba(130, 137, 145, 0.14);
  color: #63686e;
}

.section:not(.dark):not(.final-cta) .package-table tbody tr.package-row-name td.package-tier-business span {
  background: rgba(183, 126, 39, 0.18);
  color: var(--gold-deep);
}

.section:not(.dark):not(.final-cta) .price-card.featured {
  border-color: rgba(156, 116, 45, 0.42);
  background:
    linear-gradient(180deg, rgba(213, 171, 86, 0.13), rgba(255, 253, 248, 0.9)),
    var(--surface-card);
}

.section:not(.dark):not(.final-cta) .price-card li {
  border-top-color: rgba(23, 19, 12, 0.1);
}

.section:not(.dark):not(.final-cta) .strategy-orbit {
  border-color: rgba(23, 19, 12, 0.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(213, 171, 86, 0.12), transparent 55%),
    rgba(255, 253, 248, 0.76);
  box-shadow: 0 18px 58px rgba(48, 36, 18, 0.1);
}

.section:not(.dark):not(.final-cta) .strategy-orbit div {
  border-color: rgba(156, 116, 45, 0.2);
  background: rgba(255, 253, 248, 0.92);
  color: var(--text-dark);
}

.section:not(.dark):not(.final-cta) .article .lead {
  color: var(--text-dark);
}

.section:not(.dark):not(.final-cta) .article-block {
  border-bottom-color: rgba(23, 19, 12, 0.1);
}

.section:not(.dark):not(.final-cta) .faq-list summary {
  color: var(--text-dark);
}

.section:not(.dark):not(.final-cta) .contact-form input,
.section:not(.dark):not(.final-cta) .contact-form textarea {
  border-color: rgba(23, 19, 12, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-dark);
}

.section:not(.dark):not(.final-cta) .contact-form label,
.section:not(.dark):not(.final-cta) .consent {
  color: var(--text-dark);
}

.section:not(.dark):not(.final-cta) .founder-card {
  border-color: rgba(23, 19, 12, 0.12);
  background: #11100d;
  box-shadow: 0 24px 78px rgba(48, 36, 18, 0.22);
}

.section:not(.dark):not(.final-cta) .founder-card h3,
.section:not(.dark):not(.final-cta) .founder-card p:last-child {
  color: var(--paper);
}

.section:not(.dark):not(.final-cta) .founder-card .mini-kicker,
.section:not(.dark):not(.final-cta) .founder-number {
  color: var(--gold-strong);
}

.site-footer {
  padding: 4rem 1rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 78% 0%, rgba(213, 171, 86, 0.16), transparent 24rem),
    #211c14;
}

.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-logo {
  width: 155px;
  margin-bottom: 1rem;
}

.site-footer h2 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 0.35rem 0;
  color: var(--muted);
}

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

.site-footer .btn {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  gap: 0.48rem;
  margin: 1.35rem 0 0;
  padding: 0.64rem 0.72rem 0.64rem 1rem;
  font-size: 0.94rem;
  line-height: 1;
}

.site-footer .btn-light {
  color: var(--ink);
}

.site-footer .btn-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.12);
}

.floating-bob {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 40;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(213, 171, 86, 0.95), rgba(255, 235, 170, 0.78));
  transition: transform 180ms ease;
}

.floating-bob::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(242, 210, 122, 0.28);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.82);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.floating-bob:hover {
  transform: translateY(-4px) scale(1.04);
}

.floating-bob:hover::after,
.floating-bob.is-loading::after {
  opacity: 1;
  transform: scale(1);
}

.floating-bob.is-loading {
  pointer-events: none;
}

.floating-bob.is-loading img {
  animation: chatbotPulse 720ms ease-in-out infinite alternate;
}

.floating-bob img {
  width: 44px;
}

body > .chat-bubble,
body > button:has(> img[alt="Chatbot Toggle"]) {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@keyframes chatbotPulse {
  from {
    transform: scale(0.95);
    opacity: 0.72;
  }
  to {
    transform: scale(1.05);
    opacity: 1;
  }
}

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-shell {
    border-radius: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem 0 0.25rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: flex-start;
  }

  .nav-divider {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 8.5rem;
  }

  .page-hero-marketing {
    min-height: 74vh;
  }

  .page-hero-about {
    min-height: 74vh;
  }

  .about-card-network {
    left: 1rem;
    width: min(360px, 35vw);
    opacity: 0.42;
  }

  .about-phone-frame {
    right: 1rem;
    width: min(250px, 24vw);
  }

  .about-network-map {
    right: min(22vw, 15rem);
    opacity: 0.76;
  }

  .page-hero-references {
    min-height: 74vh;
  }

  .proof-card-followers {
    right: 1.4rem;
    opacity: 0.5;
  }

  .reference-analytics-panel {
    left: 1rem;
    width: min(360px, 36vw);
  }

  .reach-section {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .reach-copy {
    min-height: 460px;
  }

  .reach-ghost-scene {
    left: clamp(-6rem, -9vw, -3rem);
    width: min(720px, 92vw);
    height: 520px;
  }

  .reach-system {
    max-width: 760px;
  }

  .marketing-card-a {
    left: 0.75rem;
    width: min(370px, 38vw);
  }

  .marketing-card-b {
    top: 16%;
    width: min(520px, 56vw);
  }

  .marketing-card-c {
    right: 0.75rem;
    width: min(370px, 38vw);
  }

  .marketing-signal-console {
    width: min(520px, 64vw);
  }

  .tile-b,
  .tile-d {
    display: none;
  }

  .hero-glass-frame {
    opacity: 0.28;
  }

  .split-section,
  .contact-grid,
  .services-system-layout,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .services-system-stage {
    min-height: 560px;
  }

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

  .article-side {
    position: relative;
    top: auto;
  }

  .process-line,
  .timeline,
  .pricing-grid,
  .package-chooser,
  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .quote-grid,
  .team-grid,
  .profile-grid,
  .metric-row,
  .case-grid,
  .service-showcase,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-grid .glass-card {
    min-height: auto;
    grid-template-rows: auto;
    gap: 0.72rem;
  }

  .knowledge-grid .glass-card .text-link {
    margin-top: 0;
  }

  .services-system-steps {
    grid-template-columns: 1fr;
  }

  .team-portrait-grid .team-person-card {
    min-height: auto;
  }

  .team-person-media {
    height: clamp(154px, 28vw, 220px);
  }

  .case-card-featured {
    grid-template-columns: 1fr;
    row-gap: 0.4rem;
  }

  .case-card-featured .case-card-top,
  .case-card-featured h3,
  .case-card-featured > p,
  .case-card-featured dl,
  .case-card-featured .case-metrics {
    grid-column: 1;
  }

  .case-card-top {
    min-height: 62px;
  }

  .case-card:not(.case-card-featured) {
    grid-template-rows: 62px minmax(2.7rem, auto) minmax(4.8rem, auto) minmax(7.35rem, auto) auto;
  }

  .case-logo-chip,
  .case-card-featured .case-logo-chip {
    width: min(170px, 42vw);
    height: 58px;
    padding: 0.45rem 0.58rem;
  }

  blockquote {
    min-height: 0;
    grid-template-rows: auto auto;
  }

  .package-table-wrap {
    display: none;
  }

  .package-detail-head {
    display: none;
  }

  .package-guarantee-note {
    grid-template-columns: 1fr;
  }

  .package-choice {
    min-height: auto;
  }

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

  .founder-card {
    min-height: 340px;
  }
}

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .site-header {
    padding: 0.55rem;
  }

  .nav-shell {
    width: 100%;
    min-height: 66px;
    padding: 0.45rem 0.55rem 0.45rem 0.9rem;
  }

  .brand img {
    width: 124px;
  }

  .hero {
    min-height: 86vh;
    padding-inline: 0.9rem;
  }

  .hero-home {
    min-height: 92vh;
    padding-bottom: 12rem;
  }

  .hero-home .hero-content.reveal {
    transform: translateY(-1.75rem);
  }

  .hero-home::after {
    inset: 6.8rem 0.4rem 4.8rem;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.86) 28%, rgba(0, 0, 0, 0.88) 72%, rgba(0, 0, 0, 0.52) 100%),
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 20%, rgba(0, 0, 0, 0.82) 78%, transparent 100%);
    filter: blur(9px);
  }

  .reach-section {
    padding-block: 5rem;
  }

  .reach-copy {
    min-height: 520px;
  }

  .reach-copy-content::before {
    inset: -2.2rem -0.6rem -2rem -0.9rem;
  }

  .reach-ghost-scene {
    top: 46%;
    left: -7rem;
    width: 620px;
    height: 500px;
    opacity: 0.55;
  }

  .reach-device-a {
    width: 168px;
  }

  .reach-device-b {
    left: 40%;
    width: 132px;
  }

  .reach-proof-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .reach-system {
    padding: 0.85rem;
  }

  .reach-system-head strong {
    font-size: 1.18rem;
  }

  .reach-step {
    min-height: 0;
    padding: 0.9rem;
  }

  .reach-step > span {
    width: 40px;
    height: 40px;
  }

  .page-hero {
    min-height: 58vh;
  }

  .page-hero-services {
    min-height: 68vh;
  }

  .page-hero-services h1 {
    font-size: 2.42rem;
  }

  .page-hero-marketing {
    min-height: 78vh;
    padding-bottom: 5.8rem;
  }

  .page-hero-about {
    min-height: 82vh;
    padding-bottom: 5.8rem;
  }

  .page-hero-about::after {
    inset: 7.2rem 0.4rem 6.1rem;
    filter: blur(9px);
  }

  .about-hero-bg {
    background-position: 56% 50%;
    opacity: 0.5;
    filter: saturate(0.9) brightness(0.7) contrast(1.04);
  }

  .about-card-network {
    bottom: 8%;
    left: -112px;
    width: 285px;
    opacity: 0.28;
  }

  .about-phone-frame {
    top: 16%;
    right: -68px;
    width: 210px;
    opacity: 0.5;
  }

  .about-network-map,
  .about-team-signal {
    display: none;
  }

  .page-hero-references {
    min-height: 82vh;
    padding-bottom: 5.8rem;
  }

  .page-hero-references::after {
    inset: 7.2rem 0.4rem 6.1rem;
    filter: blur(9px);
  }

  .references-hero-bg {
    background-position: 62% 50%;
    filter: saturate(0.92) brightness(0.7) contrast(1.04);
  }

  .reference-analytics-panel,
  .reference-result-path {
    display: none;
  }

  .reference-proof-card {
    width: 148px;
    min-height: 86px;
    padding: 0.75rem;
    opacity: 0.36;
  }

  .reference-proof-card span {
    font-size: 0.68rem;
  }

  .reference-proof-card strong {
    font-size: 1.25rem;
  }

  .proof-card-views {
    top: 18%;
    left: -104px;
  }

  .proof-card-likes {
    right: -104px;
    bottom: 8%;
  }

  .proof-card-followers {
    display: none;
  }

  .page-hero-marketing::after {
    inset: 7.4rem 0.4rem 6.3rem;
    filter: blur(9px);
  }

  .marketing-card-a {
    bottom: 6.5%;
    left: -96px;
    width: 250px;
  }

  .marketing-card-b {
    top: 11.5%;
    width: min(390px, 78vw);
    opacity: 0.38;
  }

  .marketing-card-c {
    right: -100px;
    bottom: 7%;
    width: 260px;
  }

  .marketing-hero-card figcaption,
  .marketing-signal-console {
    display: none;
  }

  .marketing-light-orbit {
    width: 86vw;
  }

  .service-shot-a {
    left: -58px;
    width: 190px;
  }

  .service-shot-b {
    right: -48px;
    width: 178px;
  }

  .service-shot-c,
  .services-edit-console {
    display: none;
  }

  .services-focus-ring {
    width: 86vw;
  }

  .hero-content p,
  .page-hero-inner p {
    font-size: 1rem;
  }

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

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

  .hero-home > .hero-signal-row {
    bottom: 1rem;
    width: min(360px, calc(100% - 1.8rem));
    gap: 0.45rem;
  }

  .hero-home .hero-signal-row span {
    min-height: 38px;
    font-size: 0.82rem;
  }

  .hero-home .scroll-cue {
    bottom: 10.55rem;
    width: 50px;
    height: 50px;
    font-size: 1.45rem;
  }

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

  .btn {
    width: 100%;
  }

  .reel-tile {
    opacity: 0.18;
    filter: saturate(0.82) brightness(0.68);
  }

  .hero-motion-layer {
    opacity: 0.74;
  }

  .hero-glass-frame,
  .hero-signal-beam {
    display: none;
  }

  .hero-orbit {
    width: 86vw;
  }

  .tile-a {
    left: -72px;
    top: 28%;
    width: 210px;
  }

  .tile-c {
    right: -72px;
    top: 19%;
    width: 210px;
  }

  .section {
    width: 100%;
    padding: 4rem 1rem;
  }

  .section.dark {
    padding-inline: 1rem;
  }

  .article-lead-card,
  .article-block,
  .article-side,
  .article-cta {
    padding: 1.15rem;
  }

  .article-block {
    min-height: 0;
  }

  .article-block span {
    position: relative;
    top: auto;
    left: auto;
    display: inline-flex;
    margin-bottom: 0.55rem;
  }

  .article-block span::after {
    position: static;
    align-self: center;
    margin-left: 0.5rem;
  }

  .phone-stage {
    min-height: 350px;
  }

  .phone-primary {
    left: 12%;
    width: 150px;
  }

  .phone-secondary {
    right: 9%;
    width: 104px;
  }

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

  .services-system-stage {
    min-height: 500px;
  }

  .system-production-card {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 48%;
  }

  .system-timeline {
    right: 0.75rem;
    bottom: 12.2rem;
    left: 0.75rem;
  }

  .chip-hook {
    top: auto;
    bottom: 17rem;
    left: 0.75rem;
  }

  .chip-watch {
    top: 0.75rem;
    left: 0.75rem;
  }

  .team-person-media {
    height: 158px;
  }

  .team-person-copy p {
    max-width: none;
  }

  .visual-stack {
    min-height: 410px;
  }

  .visual-stack img {
    width: 190px;
  }

  .founder-card {
    min-height: 520px;
  }

  .founder-card::before {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.08) 0%, rgba(5, 4, 3, 0.2) 34%, rgba(5, 4, 3, 0.92) 70%, rgba(5, 4, 3, 0.98) 100%),
      linear-gradient(90deg, rgba(5, 4, 3, 0.44), rgba(5, 4, 3, 0.16));
  }

  .founder-card img {
    object-position: 68% 28%;
    filter: contrast(1.05) brightness(0.76);
  }

  .founder-content {
    min-height: 520px;
    justify-content: flex-end;
    padding: 1.4rem;
  }

  .founder-content h3 {
    font-size: 1.9rem;
  }

  .motion-panel {
    min-height: 330px;
  }

  .logo-showcase {
    width: 100%;
    min-height: 255px;
  }

  .logo-showcase img {
    width: min(270px, 74%);
  }

  .metric-row strong {
    font-size: 2.2rem;
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }

  .quiz-controls {
    flex-direction: column;
  }

  .floating-bob {
    right: 1rem;
    bottom: 1rem;
  }

  body[data-page="bedarfscheck"] .floating-bob {
    display: none;
  }
}
