:root {
  --ink: #07111f;
  --muted: #627086;
  --soft: #edf5ff;
  --paper: #f7f8f5;
  --white: #ffffff;
  --navy: #07111f;
  --blue: #446cff;
  --sky: #dceeff;
  --mint: #ddf7e9;
  --lime: #d7ff45;
  --coral: #ff6a4d;
  --line: rgba(7, 17, 31, 0.1);
  --shadow: 0 24px 80px rgba(28, 64, 116, 0.13);
  --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-display);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 0%, #d8ecff 0, transparent 32rem),
    radial-gradient(circle at 86% 6%, rgba(215, 255, 69, 0.38) 0, transparent 24rem),
    linear-gradient(180deg, #f2f8ff 0%, var(--paper) 26rem, #ffffff 100%);
}

main {
  overflow-x: hidden;
}

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

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

.social-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.social-float {
  position: absolute;
  display: inline-flex;
  min-width: 3.2rem;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 60px rgba(35, 76, 128, 0.09);
  backdrop-filter: blur(18px);
  font-size: 0.74rem;
  font-weight: 900;
  opacity: 0.2;
  animation: none;
}

.social-float::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: currentColor;
}

.social-float.small {
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding-inline: 0.75rem;
  opacity: 0.28;
  font-size: 0.68rem;
}

.social-ig {
  left: 6vw;
  top: 24vh;
  color: #e9488d;
}

.social-tt {
  right: 8vw;
  top: 18vh;
  color: #07111f;
  animation-delay: -5s;
}

.social-yt {
  left: 8vw;
  bottom: 18vh;
  color: #ff2f2f;
  animation-delay: -9s;
}

.social-x {
  right: 12vw;
  bottom: 12vh;
  color: #07111f;
  animation-delay: -13s;
}

.social-ig.small {
  left: 32vw;
  top: 57vh;
  animation-delay: -3s;
}

.social-tt.small {
  right: 26vw;
  top: 43vh;
  animation-delay: -11s;
}

.social-yt.small {
  left: 47vw;
  bottom: 7vh;
  animation-delay: -7s;
}

.social-x.small {
  right: 38vw;
  bottom: 34vh;
  animation-delay: -15s;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.cursor-light {
  position: fixed;
  width: 32rem;
  height: 32rem;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.24;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(68, 108, 255, 0.2), transparent 68%);
  transition: opacity 220ms ease;
}

.site-header {
  position: fixed;
  top: 1.25rem;
  left: clamp(1rem, 4vw, 3rem);
  right: clamp(1rem, 4vw, 3rem);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(35, 76, 128, 0.13);
  backdrop-filter: blur(20px);
}

.brand,
.desktop-nav,
.header-cta,
.language-toggle {
  font-size: 0.88rem;
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 0.3rem;
}

.brand-mark {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--navy);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.logo-mark {
  overflow: hidden;
  background: #0d1112;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.34);
}

.desktop-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  color: var(--muted);
  font-weight: 600;
}

.desktop-nav a,
.header-cta,
.language-toggle {
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.language-picker {
  position: relative;
}

.language-toggle {
  min-width: 3rem;
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.82rem;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  cursor: pointer;
}

.language-toggle[aria-expanded="true"] {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 12px 30px rgba(68, 108, 255, 0.14);
}

.language-flag {
  font-size: 1rem;
  line-height: 1;
}

.language-code {
  font-size: 0.78rem;
  line-height: 1;
}

.language-caret {
  margin-left: 0.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1;
  transform: translateY(-1px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  z-index: 40;
  display: grid;
  width: 13.2rem;
  padding: 0.42rem;
  border: 1px solid rgba(7, 17, 31, 0.09);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(35, 76, 128, 0.18);
  backdrop-filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem) scale(0.98);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-picker.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.language-menu button {
  display: grid;
  grid-template-columns: 1.6rem 1fr auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.65rem;
  padding: 0.45rem 0.58rem;
  border: 0;
  border-radius: 0.8rem;
  color: var(--ink);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.is-active {
  background: rgba(68, 108, 255, 0.08);
}

.language-menu button span {
  font-size: 1.08rem;
}

.language-menu button strong {
  font-size: 0.86rem;
}

.language-menu button small {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.language-toggle:hover {
  transform: translateY(-1px);
  color: var(--blue);
}

.desktop-nav a:hover {
  color: var(--blue);
}

.header-cta {
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(7, 17, 31, 0.18);
}

.header-cta-mobile {
  display: none;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: var(--blue);
}

.section-block {
  position: relative;
  scroll-margin-top: 6rem;
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 5vw, 4rem);
}

.section-block > :not(.hero-media) {
  position: relative;
  z-index: 2;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.55fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: 8.8rem;
  overflow: hidden;
}

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

.motion-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(247, 248, 245, 0.74) 0%, rgba(247, 248, 245, 0.48) 42%, rgba(247, 248, 245, 0.08) 100%),
    linear-gradient(0deg, rgba(247, 248, 245, 0.82) 0%, transparent 32%);
}

.scanline {
  display: none;
}

.hero-social-cloud {
  position: absolute;
  inset: auto 7vw 11vh auto;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.75rem;
  transform: rotate(-5deg);
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.65rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 50px rgba(35, 76, 128, 0.12);
  font-size: 0.74rem;
  font-weight: 900;
  animation: none;
}

.platform-pill::before,
.service-icon::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: currentColor;
}

.ig-pill {
  color: #e9488d;
}

.tt-pill {
  color: #07111f;
  animation-delay: -1.2s;
}

.yt-pill {
  color: #ff2f2f;
  animation-delay: -2.2s;
}

.x-pill {
  color: #07111f;
  animation-delay: -3s;
}

.phone-stack {
  position: absolute;
  right: clamp(-6rem, -5vw, -1rem);
  top: 18vh;
  width: min(52vw, 48rem);
  height: 68vh;
  z-index: 2;
  transform: rotate(-4deg);
}

.phone {
  position: absolute;
  width: clamp(11rem, 17vw, 17rem);
  aspect-ratio: 9 / 16;
  padding: 0.62rem;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 90px rgba(7, 17, 31, 0.18);
  animation: float 7s ease-in-out infinite;
}

.phone-primary {
  right: 35%;
  top: 0;
  z-index: 2;
}

.phone-secondary {
  right: 8%;
  top: 12%;
  transform: scale(0.9) rotate(7deg);
  animation-delay: -2s;
}

.phone-tertiary {
  right: 52%;
  top: 34%;
  transform: scale(0.78) rotate(-8deg);
  animation-delay: -4s;
}

.phone-screen,
.phone-video {
  position: relative;
  height: 100%;
  border-radius: 1.35rem;
  overflow: hidden;
  background-size: 220% 220%;
  animation: gradientShift 8s ease-in-out infinite;
}

.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.36), transparent 28%, transparent 58%, rgba(7, 17, 31, 0.78)),
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.24), transparent 18rem);
}

.phone-tiktok .phone-screen::before {
  background-image: url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=900&q=84");
}

.phone-reels .phone-screen::before {
  background-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=900&q=84");
}

.phone-shorts .phone-screen::before {
  background-image: url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=900&q=84");
}

.video-one {
  background-image:
    linear-gradient(160deg, rgba(68, 108, 255, 0.92), rgba(255, 255, 255, 0.3) 42%, rgba(215, 255, 69, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(7, 17, 31, 0.06) 28px 29px);
}

.video-two {
  background-image:
    linear-gradient(145deg, rgba(220, 238, 255, 1), rgba(255, 255, 255, 0.65) 46%, rgba(255, 106, 77, 0.78)),
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.8), transparent 18%);
}

.video-three {
  background-image:
    linear-gradient(155deg, rgba(221, 247, 233, 1), rgba(255, 255, 255, 0.5), rgba(68, 108, 255, 0.7)),
    repeating-linear-gradient(0deg, transparent 0 21px, rgba(7, 17, 31, 0.07) 21px 22px);
}

.reel-ui,
.reel-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.reel-ui strong {
  color: var(--lime);
  font-size: 1.35rem;
}

.phone-status,
.brand-overlay,
.reel-actions,
.reel-copy,
.home-bar {
  position: absolute;
  z-index: 3;
}

.phone-status {
  top: 0.78rem;
  left: 0.9rem;
  right: 0.9rem;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
}

.brand-overlay {
  top: 2.6rem;
  left: 0.9rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 0.5rem;
  align-items: center;
  color: #fff;
}

.mini-logo {
  grid-row: span 2;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 900;
}

.mini-logo-image {
  overflow: hidden;
  padding: 0;
  background: #0d1112;
}

.mini-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.36);
}

.brand-overlay strong {
  font-size: 0.82rem;
}

.brand-overlay small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
}

.reel-actions {
  right: 0.75rem;
  bottom: 4.9rem;
  display: grid;
  gap: 0.55rem;
}

.reel-actions span {
  display: grid;
  width: 2.3rem;
  min-height: 2.3rem;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 17, 31, 0.38);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  font-weight: 900;
  animation: bob 4.2s ease-in-out infinite;
}

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

.reel-actions span:nth-child(3) {
  animation-delay: -2s;
}

.reel-actions small {
  font-size: 0.48rem;
}

.reel-copy {
  left: 0.9rem;
  right: 3.8rem;
  bottom: 2.1rem;
  color: #fff;
}

.reel-copy strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
}

.reel-copy p {
  margin: 0 0 0.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  line-height: 1.25;
}

.reel-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.52rem;
}

.home-bar {
  left: 50%;
  bottom: 0.65rem;
  width: 4.4rem;
  height: 0.22rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}

.ticker-strip {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  z-index: 4;
  display: flex;
  gap: 1rem;
  min-width: 120vw;
  padding: 0.65rem 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  opacity: 0.58;
  animation: marquee 22s linear infinite;
}

.ticker-strip span {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 30px rgba(35, 76, 128, 0.08);
}

.hero-content {
  position: relative;
  z-index: 6;
  max-width: 62rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.1rem;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1.4rem;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  font-size: clamp(2.8rem, 5.6vw, 5.95rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 46rem;
  color: #3f4b5d;
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  line-height: 1.5;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(35, 76, 128, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-proof-row strong {
  margin-right: 0.35rem;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 18px 42px rgba(68, 108, 255, 0.24);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.hero-console {
  position: relative;
  z-index: 6;
  align-self: end;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

#platforms-title,
#clipify-title,
#manifesto-title,
#contact-title {
  scroll-margin-top: 8rem;
}

.console-top,
.signal-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono);
}

.console-top {
  padding-bottom: 1rem;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
}

.signal-row {
  padding: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.signal-row strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 4vw, 4rem) 2rem;
  color: var(--muted);
  background: rgba(246, 249, 252, 0.86);
  border-top: 1px solid var(--line);
}

.footer-brand,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand {
  color: var(--ink);
  font-weight: 900;
}

.footer-brand .brand-mark {
  width: 2.6rem;
  height: 2.6rem;
}

.footer-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav a {
  padding: 0.65rem 0.85rem;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.48fr);
  gap: clamp(1.5rem, 6vw, 5rem);
  align-items: end;
}

.split-heading h2,
.section-title,
.clipify h2,
.manifesto h2,
.final-cta h2 {
  color: var(--ink);
  font-size: clamp(2.25rem, 5.2vw, 5.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.split-heading p,
.clipify-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.metric-grid,
.systems-grid,
.case-grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.proof-statement {
  position: relative;
  display: grid;
  gap: 0.8rem;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at 80% 14%, rgba(215, 255, 69, 0.34), transparent 18rem),
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(18, 39, 86, 0.94));
  box-shadow: 0 28px 90px rgba(7, 17, 31, 0.18);
}

.proof-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 34%, rgba(255, 255, 255, 0.34) 46%, transparent 60% 100%);
  transform: translateX(-120%);
  animation: proofSweep 3.8s ease-in-out infinite;
}

.proof-statement::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  top: 50%;
  width: min(28rem, 36vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 255, 69, 0.38), transparent 62%);
  transform: translateY(-50%);
  animation: signalBreath 2.8s ease-in-out infinite;
}

.proof-statement > * {
  position: relative;
  z-index: 1;
}

.proof-pulse {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.proof-pulse span {
  width: auto;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.12);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  animation: chipPulse 2.2s ease-in-out infinite;
}

.proof-pulse span:nth-child(2) {
  animation-delay: -800ms;
}

.proof-pulse span:nth-child(3) {
  animation-delay: -1.6s;
}

.proof-pulse span:nth-child(4) {
  animation-delay: -2.4s;
}

.proof-statement strong {
  color: #fff;
  text-shadow: 0 0 34px rgba(255, 255, 255, 0.12);
  font-size: clamp(3.3rem, 8.4vw, 8.4rem);
  line-height: 0.88;
  animation: numberGlow 2.8s ease-in-out infinite;
}

.proof-statement > span {
  max-width: 62rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.25;
}

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

.metric-card,
.system-card,
.case-card {
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 60px rgba(35, 76, 128, 0.09);
}

.metric-card {
  min-height: 17rem;
  padding: 1.25rem;
}

.metric-card span,
.system-card span,
.case-content span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin: 3.6rem 0 1rem;
  color: var(--ink);
  font-size: clamp(3.2rem, 5.2vw, 5.6rem);
  line-height: 0.85;
}

.metric-card strong::after {
  content: "+";
  color: var(--coral);
}

.metric-card p,
.system-card p,
.case-content p {
  color: var(--muted);
  line-height: 1.5;
}

.platforms {
  padding-top: clamp(2.8rem, 4.6vw, 4rem);
  padding-bottom: clamp(2.8rem, 4.6vw, 4rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 106, 77, 0.16), transparent 22rem),
    radial-gradient(circle at 86% 0%, rgba(68, 108, 255, 0.14), transparent 28rem),
    #ffffff;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: clamp(1.1rem, 2.4vw, 1.8rem);
}

.platform-card {
  position: relative;
  min-height: 21.5rem;
  padding: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 70px rgba(35, 76, 128, 0.1);
}

.platform-card::before,
.platform-card::after {
  content: none;
}

.platform-card-top {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: space-between;
}

.platform-signal {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0 0.62rem;
  border: 1px solid rgba(7, 17, 31, 0.07);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.66);
  font-size: 0.62rem;
  font-weight: 900;
  white-space: nowrap;
}

.platform-icon,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: auto;
  min-width: 2.8rem;
  min-height: 2.15rem;
  padding: 0 0.78rem;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.16);
}

.platform-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  overflow: visible;
}

.platform-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.tiktok-icon svg *,
.x-icon svg * {
  fill: currentColor;
  stroke: none;
}

.youtube-icon svg rect {
  fill: transparent;
  stroke: none;
}

.youtube-icon svg path {
  fill: #fff;
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(1.08);
}

.instagram-icon {
  background: linear-gradient(135deg, #ffd166, #e9488d 45%, #7d5cff);
}

.tiktok-icon {
  background:
    radial-gradient(circle at 35% 35%, rgba(37, 244, 238, 0.9), transparent 28%),
    radial-gradient(circle at 68% 68%, rgba(254, 44, 85, 0.8), transparent 30%),
    var(--navy);
}

.youtube-icon {
  background: #ff2f2f;
}

.x-icon {
  background: var(--navy);
}

.platform-card h3 {
  position: relative;
  margin: 0.85rem 0 0.35rem;
  color: var(--ink);
  font-size: 1.3rem;
}

.platform-card p {
  position: relative;
  max-width: 18rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.32;
}

.platform-wave {
  display: none;
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 4.6rem;
  border-radius: 1rem;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0 0.7rem, transparent 0.7rem 1.2rem),
    linear-gradient(135deg, rgba(68, 108, 255, 0.6), rgba(215, 255, 69, 0.58));
  mask-image: linear-gradient(180deg, transparent, black 35%);
  animation: waveSlide 4s linear infinite;
}

.mini-phone {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 2;
  width: 4.8rem;
  height: 8.2rem;
  overflow: hidden;
  border-radius: 1.25rem;
  color: #fff;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -5rem 4rem rgba(7, 17, 31, 0.55);
  animation: none;
}

.mini-instagram {
  background-image:
    radial-gradient(circle at 26% 22%, #ffd166, transparent 18%),
    radial-gradient(circle at 70% 42%, #e9488d, transparent 22%),
    linear-gradient(135deg, #7d5cff, #fb7db6);
}

.mini-tiktok {
  background-image:
    radial-gradient(circle at 30% 35%, #25f4ee, transparent 18%),
    radial-gradient(circle at 74% 62%, #fe2c55, transparent 22%),
    linear-gradient(135deg, #07111f, #1b2540);
}

.mini-youtube {
  background-image:
    radial-gradient(circle at 50% 38%, #ff2f2f 0 22%, transparent 23%),
    linear-gradient(135deg, #fff, #ffd8d8);
}

.mini-x {
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 1rem),
    linear-gradient(135deg, #07111f, #446cff);
}

.mini-phone-top,
.mini-phone-caption {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  font-size: 0.58rem;
  font-weight: 900;
}

.mini-phone-top {
  top: 0.65rem;
}

.mini-phone-caption {
  bottom: 0.65rem;
}

.mini-phone-actions {
  position: absolute;
  right: 0.42rem;
  bottom: 2.3rem;
  display: grid;
  gap: 0.35rem;
}

.mini-phone-actions span {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
}

.social-mock {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  height: 8.9rem;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 -4rem 4rem rgba(7, 17, 31, 0.05);
}

.platform-visual {
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.95), transparent 7rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(239, 245, 255, 0.76));
}

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

.platform-visual::before {
  inset: 0.9rem;
  border-radius: 1rem;
  background:
    linear-gradient(90deg, transparent 0 32%, rgba(7, 17, 31, 0.08) 32% 33%, transparent 33% 66%, rgba(7, 17, 31, 0.08) 66% 67%, transparent 67%),
    linear-gradient(0deg, transparent 0 48%, rgba(7, 17, 31, 0.08) 48% 49%, transparent 49%);
  opacity: 0.55;
}

.platform-visual::after {
  width: 7rem;
  height: 7rem;
  right: -2.2rem;
  top: -2.5rem;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.88;
  animation: visualPulse 3s ease-in-out infinite;
}

.instagram-visual::after {
  background: radial-gradient(circle, #e9488d, #7d5cff 54%, transparent 68%);
}

.tiktok-visual::after {
  background:
    radial-gradient(circle at 35% 34%, #25f4ee, transparent 24%),
    radial-gradient(circle at 64% 64%, #fe2c55, transparent 30%),
    radial-gradient(circle, #07111f, transparent 68%);
}

.youtube-visual::after {
  background: radial-gradient(circle, #ff2f2f, transparent 68%);
}

.x-visual::after {
  background: radial-gradient(circle, #07111f, #24365d 58%, transparent 70%);
}

.network-orbit {
  position: absolute;
  inset: 0.9rem;
  z-index: 2;
}

.network-orbit span {
  position: absolute;
  min-width: 3.1rem;
  padding: 0.38rem 0.52rem;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.58rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 28px rgba(35, 76, 128, 0.1);
  animation: orbitFloat 3.6s ease-in-out infinite;
}

.network-orbit span:nth-child(1) {
  left: 0;
  top: 0.15rem;
}

.network-orbit span:nth-child(2) {
  right: 0.1rem;
  top: 2.7rem;
  animation-delay: -1.2s;
}

.network-orbit span:nth-child(3) {
  left: 1.5rem;
  bottom: 0.2rem;
  animation-delay: -2.4s;
}

.platform-device {
  position: absolute;
  z-index: 3;
  right: 0.9rem;
  bottom: 0.9rem;
  width: 6.2rem;
  min-height: 6.9rem;
  padding: 0.78rem;
  border-radius: 1.05rem;
  color: #fff;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(160deg, #07111f, #1d2c4a);
  box-shadow: 0 18px 46px rgba(7, 17, 31, 0.2);
  animation: deviceFloat 4s ease-in-out infinite;
}

.platform-device strong {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
}

.platform-device p {
  margin: 0.75rem 0 0.42rem;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.05;
  font-weight: 900;
}

.platform-device small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 800;
}

.signal-bars {
  position: absolute;
  left: 0.9rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 0.28rem;
  height: 3.4rem;
}

.signal-bars span {
  width: 0.58rem;
  border-radius: 999px;
  background: var(--blue);
  animation: signalBar 1.4s ease-in-out infinite;
}

.signal-bars span:nth-child(1) {
  height: 1.1rem;
}

.signal-bars span:nth-child(2) {
  height: 1.8rem;
  animation-delay: -240ms;
}

.signal-bars span:nth-child(3) {
  height: 2.7rem;
  animation-delay: -480ms;
}

.signal-bars span:nth-child(4) {
  height: 2.1rem;
  animation-delay: -720ms;
}

.instagram-visual .signal-bars span {
  background: linear-gradient(180deg, #e9488d, #7d5cff);
}

.tiktok-visual .signal-bars span {
  background: linear-gradient(180deg, #25f4ee, #fe2c55);
}

.youtube-visual .signal-bars span {
  background: #ff2f2f;
}

.x-visual .signal-bars span {
  background: #07111f;
}

.ig-story-row {
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  display: flex;
  gap: 0.45rem;
}

.ig-story-row span {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd166, #e9488d, #7d5cff);
  border: 2px solid #fff;
}

.ig-grid {
  position: absolute;
  left: 0.8rem;
  right: 5.8rem;
  bottom: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}

.ig-grid span {
  aspect-ratio: 1;
  border-radius: 0.45rem;
  background: linear-gradient(135deg, #fb7db6, #7d5cff);
}

.tiktok-feed-card,
.youtube-player,
.tweet-card {
  position: absolute;
  left: 0.85rem;
  right: 5.8rem;
  top: 0.85rem;
  bottom: 0.85rem;
  border-radius: 1rem;
}

.tiktok-feed-card {
  padding: 0.7rem;
  color: #fff;
  background:
    radial-gradient(circle at 48% 38%, rgba(37, 244, 238, 0.95), transparent 18%),
    radial-gradient(circle at 78% 70%, rgba(254, 44, 85, 0.86), transparent 20%),
    linear-gradient(135deg, #07111f, #152037);
}

.tiktok-feed-card strong,
.tiktok-feed-card p {
  position: relative;
  z-index: 1;
}

.music-disc {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: repeating-conic-gradient(#111 0 12deg, #333 12deg 24deg);
}

.comment-bubbles {
  position: absolute;
  left: 1.3rem;
  bottom: 1.15rem;
  display: grid;
  gap: 0.35rem;
}

.comment-bubbles span,
.thread-lines span {
  display: block;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
}

.youtube-player {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,47,47,0.16)),
    repeating-linear-gradient(0deg, rgba(7,17,31,0.08) 0 1px, transparent 1px 1rem);
}

.youtube-player span {
  width: 3rem;
  height: 2.1rem;
  border-radius: 0.75rem;
  background: #ff2f2f;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.youtube-player span::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 0.72rem auto;
  border-block: 0.65rem solid transparent;
  border-left: 1rem solid #fff;
}

.thumbnail-strip {
  position: absolute;
  left: 0.8rem;
  right: 5.8rem;
  bottom: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.thumbnail-strip span {
  height: 1.6rem;
  border-radius: 0.45rem;
  background: rgba(255, 47, 47, 0.18);
}

.tweet-card {
  padding: 0.75rem;
  color: #fff;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.13) 0 1px, transparent 1px 1.2rem),
    linear-gradient(135deg, #07111f, #223763);
}

.tweet-card strong {
  display: block;
  margin-bottom: 0.4rem;
}

.tweet-card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.25;
}

.tweet-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
}

.thread-lines {
  position: absolute;
  left: 1rem;
  bottom: 0.8rem;
  display: grid;
  gap: 0.4rem;
  width: 6.4rem;
}

.thread-lines span {
  height: 0.65rem;
  padding: 0;
  opacity: 0.9;
}

.systems {
  background:
    radial-gradient(circle at 85% 0%, rgba(221, 247, 233, 0.8), transparent 28rem),
    rgba(255, 255, 255, 0.46);
}

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

.system-card {
  position: relative;
  min-height: 20rem;
  padding: 1.3rem;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.system-card::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -3.5rem;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 108, 255, 0.15), transparent 68%);
  animation: none;
}

.system-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 80px rgba(35, 76, 128, 0.14);
}

.system-card h3 {
  max-width: 15ch;
  margin: 3.8rem 0 1rem;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.1vw, 2.25rem);
  line-height: 1;
}

.service-icon {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  color: #fff;
  animation: none;
}

.services {
  background:
    radial-gradient(circle at 16% 6%, rgba(68, 108, 255, 0.14), transparent 30rem),
    radial-gradient(circle at 88% 26%, rgba(215, 255, 69, 0.24), transparent 24rem),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

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

.service-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  height: 100%;
  min-height: auto;
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 80px rgba(35, 76, 128, 0.1);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 90px rgba(35, 76, 128, 0.14);
}

.service-main {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  height: 100%;
  min-width: 0;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.service-meta span,
.service-result span,
.services-cta span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-meta strong {
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 0.8rem;
}

.service-block h3 {
  max-width: 20ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.1vw, 2.35rem);
  line-height: 0.98;
}

.service-description,
.service-result p {
  max-width: 52rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.service-workflow-label {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  min-height: 5rem;
  padding: 0.72rem;
  border: 1px solid rgba(7, 17, 31, 0.07);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.35;
}

.service-steps b {
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.service-result {
  display: grid;
  gap: 0.4rem;
  margin-top: auto;
  padding: 0.85rem;
  border-left: 3px solid var(--blue);
  border-radius: 1rem;
  background: rgba(68, 108, 255, 0.07);
}

.service-result p {
  color: var(--ink);
  font-weight: 800;
}

.service-block-compact .service-media {
  display: none;
}

.service-media {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(7, 17, 31, 0.07);
  border-radius: 1.35rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.72), transparent 18%),
    linear-gradient(145deg, #0b1221, #3159df);
}

.service-media::before,
.service-media::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.service-media::before {
  inset: auto 1rem 1rem 1rem;
  height: 5.2rem;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.08)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.76) 0 0.34rem, transparent 0.34rem 0.86rem);
  opacity: 0.74;
}

.service-media::after {
  right: 1rem;
  top: 1rem;
  width: 8rem;
  aspect-ratio: 9 / 16;
  border: 0.5rem solid rgba(255,255,255,0.82);
  background:
    radial-gradient(circle at 50% 42%, rgba(215,255,69,0.75), transparent 18%),
    linear-gradient(160deg, rgba(7,17,31,0.9), rgba(68,108,255,0.72));
  box-shadow: 0 24px 54px rgba(7, 17, 31, 0.22);
}

.service-media-label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1;
  max-width: 12rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.service-media-metrics {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 7rem;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
}

.service-media-metrics span {
  width: min(100%, 12rem);
  height: 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
}

.service-media-metrics span:nth-child(2) {
  width: 68%;
}

.service-media-metrics span:nth-child(3) {
  width: 44%;
  background: var(--lime);
}

.services-cta {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.4rem;
  padding: 1.25rem;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 80px rgba(35, 76, 128, 0.1);
}

.services-cta strong {
  display: block;
  max-width: 45rem;
  margin-top: 0.3rem;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2.35rem);
  line-height: 1;
}

.clipify {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(28rem, 1fr);
  gap: clamp(1.25rem, 2.6vw, 2.2rem);
  align-items: center;
  padding-top: clamp(2.1rem, 4vw, 3.2rem);
  padding-bottom: clamp(2.1rem, 4vw, 3.2rem);
  background:
    radial-gradient(circle at 74% 22%, rgba(68, 108, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, #f7fbff, #ffffff);
}

.clipify h2 {
  max-width: 13ch;
  font-size: clamp(1.85rem, 3vw, 3.05rem);
  line-height: 1.02;
}

.clipify-copy > p {
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.48;
}

.feature-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0.85rem 0 0;
  list-style: none;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
}

.feature-list li {
  padding: 0.52rem 0.68rem;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.clipify-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.6rem;
}

.clipify-proof article {
  padding: 0.62rem;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(35, 76, 128, 0.08);
}

.clipify-proof strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1;
}

.clipify-proof span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.clipify-dashboard {
  min-height: 24rem;
  display: grid;
  grid-template-columns: 7.6rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(68, 108, 255, 0.16);
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at 76% 8%, rgba(255, 191, 216, 0.34), transparent 18rem),
    radial-gradient(circle at 26% 18%, rgba(220, 238, 255, 0.86), transparent 20rem),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 90px rgba(68, 108, 255, 0.16);
}

.clipify-sidebar {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: 0.55rem;
  border: 1px solid rgba(7, 17, 31, 0.07);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset -1px 0 0 rgba(7, 17, 31, 0.04);
}

.clipify-logo {
  margin-bottom: 0.45rem;
  padding: 0.58rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(35, 76, 128, 0.1);
}

.clipify-sidebar span {
  padding: 0.5rem 0.58rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.clipify-sidebar .nav-active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 30px rgba(35, 76, 128, 0.1);
}

.clipify-workspace {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-width: 0;
}

.dashboard-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: center;
}

.dashboard-topline span {
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(35, 76, 128, 0.08);
}

.dashboard-topline button,
.brief-card button {
  border: 0;
  border-radius: 999px;
  padding: 0.68rem 0.85rem;
  color: #fff;
  background: var(--blue);
  font: inherit;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(68, 108, 255, 0.24);
  animation: pulseButton 2.8s ease-in-out infinite;
}

.dashboard-status {
  color: var(--blue);
  font-weight: 900;
}

.dashboard-title h3 {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1;
}

.dashboard-title p {
  max-width: 45rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.34;
}

.dashboard-stats,
.offer-row,
.offer-meta {
  display: grid;
  gap: 0.55rem;
}

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

.dashboard-stats div,
.offer-card {
  border: 1px solid rgba(7, 17, 31, 0.07);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 50px rgba(35, 76, 128, 0.08);
}

.dashboard-stats div {
  padding: 0.55rem;
}

.dashboard-stats span {
  display: block;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.dashboard-stats strong {
  display: block;
  margin: 0.55rem 0 0.2rem;
  color: var(--ink);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1;
}

.dashboard-stats small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

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

.clipify-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.clipify-flow article {
  min-height: 6.35rem;
  padding: 0.55rem;
  border: 1px solid rgba(7, 17, 31, 0.07);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 82% 12%, rgba(215, 255, 69, 0.24), transparent 8rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(35, 76, 128, 0.08);
}

.clipify-flow span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 800;
}

.clipify-flow strong {
  display: block;
  margin: 0.62rem 0 0.28rem;
  color: var(--ink);
  font-size: 1rem;
}

.clipify-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.18;
}

.offer-card {
  position: relative;
  min-height: 15rem;
  overflow: hidden;
  padding: 1rem;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.offer-orange::before {
  background:
    radial-gradient(circle at 20% 20%, #ff9d4d, transparent 26%),
    linear-gradient(135deg, #a54816, #ffb15c);
}

.offer-green::before {
  background:
    radial-gradient(circle at 24% 20%, #85ff8f, transparent 24%),
    linear-gradient(135deg, #103f21, #48a243);
}

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

.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.offer-tag span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 17, 31, 0.68);
}

.offer-card strong {
  display: block;
  max-width: 18rem;
  margin: 3.6rem 0 1rem;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.1;
}

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

.offer-meta span {
  padding: 0.65rem;
  border-radius: 0.9rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(1.1rem, 2.4vw, 2rem);
}

.cases {
  padding-top: clamp(2.2rem, 4.5vw, 3.6rem);
  padding-bottom: clamp(2.2rem, 4.5vw, 3.6rem);
}

.cases .section-title {
  font-size: clamp(2rem, 4.5vw, 4.7rem);
  line-height: 0.95;
}

.case-card {
  min-height: 22rem;
  overflow: hidden;
}

.case-visual {
  position: relative;
  height: 12rem;
  overflow: hidden;
  background-size: 200% 200%;
  animation: gradientShift 10s ease-in-out infinite;
}

.music-visual {
  background-image: linear-gradient(135deg, var(--sky), #fff 46%, var(--coral));
}

.founder-visual {
  background-image: linear-gradient(135deg, var(--mint), #fff 48%, var(--blue));
}

.ad-visual {
  background-image: linear-gradient(135deg, #fff, var(--sky) 52%, var(--lime));
}

.photo-frame {
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.25rem;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -8rem 7rem rgba(7, 17, 31, 0.16);
  transform: scale(1.04);
}

.artist-photo {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 106, 77, 0.18)),
    url("https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?auto=format&fit=crop&w=1000&q=82");
}

.founder-photo {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(68, 108, 255, 0.18)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1000&q=82");
}

.studio-photo {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(215, 255, 69, 0.24)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1000&q=82");
}

.floating-metric,
.comment-stack,
.ad-graph,
.sound-bars {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(35, 76, 128, 0.14);
  backdrop-filter: blur(16px);
}

.floating-metric {
  right: 1rem;
  top: 1rem;
  padding: 0.52rem 0.7rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  animation: none;
}

.sound-bars {
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: end;
  gap: 0.32rem;
  height: 2.8rem;
  padding: 0.55rem 0.7rem;
}

.sound-bars span {
  display: block;
  width: 0.42rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--coral);
  animation: audioBounce 900ms ease-in-out infinite;
}

.sound-bars span:nth-child(2) {
  animation-delay: -160ms;
}

.sound-bars span:nth-child(3) {
  animation-delay: -320ms;
}

.sound-bars span:nth-child(4) {
  animation-delay: -480ms;
}

.sound-bars span:nth-child(5) {
  animation-delay: -640ms;
}

.comment-stack {
  left: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.35rem;
  padding: 0.6rem;
  border-radius: 1rem;
}

.comment-stack span {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  font-weight: 800;
}

.ad-graph {
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: end;
  gap: 0.55rem;
  height: 3.7rem;
  padding: 0.55rem 0.75rem;
  border-radius: 1rem;
}

.ad-graph span {
  width: 0.82rem;
  border-radius: 999px;
  background: var(--blue);
  animation: graphRise 1.8s ease-in-out infinite;
}

.ad-graph span:nth-child(1) {
  height: 1.5rem;
}

.ad-graph span:nth-child(2) {
  height: 2.4rem;
  animation-delay: -300ms;
}

.ad-graph span:nth-child(3) {
  height: 3.4rem;
  animation-delay: -600ms;
}

.ad-graph span:nth-child(4) {
  height: 2.9rem;
  animation-delay: -900ms;
}

.case-content {
  padding: 0.8rem;
}

.case-content h3 {
  margin: 0.55rem 0 0.55rem;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  line-height: 1.02;
}

.case-content p {
  font-size: 0.82rem;
  line-height: 1.35;
}

.case-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.case-proof div {
  padding: 0.5rem;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 1rem;
  background: rgba(68, 108, 255, 0.07);
}

.case-proof span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.case-proof strong {
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1;
}

.manifesto {
  min-height: 74svh;
  padding-top: clamp(2.4rem, 5vw, 4.2rem);
  padding-bottom: clamp(2.4rem, 5vw, 4.2rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 36%, rgba(68, 108, 255, 0.24), transparent 22rem),
    radial-gradient(circle at 12% 18%, rgba(255, 106, 77, 0.18), transparent 22rem),
    var(--navy);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(20rem, 0.82fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 112rem;
  margin: 0 auto;
}

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

.manifesto h2 {
  max-width: 13ch;
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 5.7rem);
  line-height: 0.94;
}

.manifesto-copy p:not(.section-kicker) {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.98rem;
  line-height: 1.48;
}

.attention-lab {
  position: relative;
  min-height: 25rem;
  padding: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.feed-column {
  display: grid;
  gap: 0.62rem;
}

.feed-column article {
  padding: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  animation: feedSlide 5s ease-in-out infinite;
}

.feed-column article:nth-child(2) {
  animation-delay: -1.4s;
}

.feed-column article:nth-child(3) {
  border-color: rgba(215, 255, 69, 0.38);
  animation-delay: -2.8s;
}

.feed-column span,
.signal-column span,
.loop-core span {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.feed-column strong {
  display: block;
  margin-top: 0.32rem;
  color: #fff;
  font-size: 1.02rem;
}

.loop-core {
  position: absolute;
  right: 1rem;
  top: 7.9rem;
  width: min(18rem, 46%);
  padding: 0.9rem;
  border-radius: 1.4rem;
  color: #fff;
  background: rgba(7, 17, 31, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(215, 255, 69, 0.25);
}

.loop-core strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.02rem;
  line-height: 1.2;
}

.signal-column {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.46rem;
  width: min(18rem, 48%);
}

.signal-column span {
  padding: 0.58rem 0.7rem;
  border-radius: 999px;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
}

.attention-system {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.62fr);
  gap: 0.85rem;
  align-items: stretch;
}

.attention-path {
  display: grid;
  gap: 0.58rem;
}

.attention-path article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.7rem;
  row-gap: 0.12rem;
  align-items: start;
  min-height: 4.2rem;
  padding: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.07);
  animation: feedSlide 4.2s ease-in-out infinite;
}

.attention-path article:nth-child(2) {
  animation-delay: -1s;
}

.attention-path article:nth-child(3) {
  border-color: rgba(215, 255, 69, 0.36);
  animation-delay: -2s;
}

.attention-path article:nth-child(4) {
  animation-delay: -3s;
}

.attention-path span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 900;
}

.attention-path strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}

.attention-path p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  line-height: 1.24;
}

.attention-core {
  align-self: start;
  display: grid;
  gap: 0.65rem;
  padding: 0.9rem;
  border: 1px solid rgba(215, 255, 69, 0.3);
  border-radius: 1.1rem;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(215, 255, 69, 0.16), transparent 7rem),
    rgba(7, 17, 31, 0.66);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.attention-core span {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.attention-core strong {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.1;
}

.attention-metrics {
  grid-column: 2;
  align-self: end;
  display: grid;
  gap: 0.52rem;
}

.attention-metrics span {
  display: block;
  padding: 0.58rem 0.7rem;
  border-radius: 999px;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
}

.manifesto-lines {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: clamp(0.8rem, 2vw, 1.4rem);
}

.manifesto-lines article {
  position: relative;
  min-height: 8.4rem;
  margin: 0;
  padding: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.07);
}

.principle-visual {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3.7rem;
  height: 2.45rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.principle-hook .principle-visual::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border-radius: 0.55rem;
  background: linear-gradient(90deg, var(--lime) 0 18%, rgba(255,255,255,0.18) 18% 100%);
}

.principle-retention .principle-visual::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.8rem;
  height: 1.8rem;
  border-left: 0.45rem solid var(--lime);
  border-bottom: 0.45rem solid rgba(255,255,255,0.28);
  border-radius: 0 0 0 0.5rem;
}

.principle-retention .principle-visual span {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 1rem;
  height: 0.18rem;
  background: linear-gradient(90deg, var(--lime), transparent);
  transform: rotate(-18deg);
}

.principle-identity .principle-visual::before,
.principle-identity .principle-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
}

.principle-identity .principle-visual::before {
  left: 0.75rem;
  top: 0.7rem;
  width: 2.6rem;
  height: 1rem;
}

.principle-identity .principle-visual::after {
  right: 0.7rem;
  bottom: 0.7rem;
  width: 2.9rem;
  height: 1rem;
  background: var(--lime);
}

.principle-distribution .principle-visual::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  background:
    radial-gradient(circle at 10% 50%, var(--lime) 0 0.35rem, transparent 0.38rem),
    radial-gradient(circle at 50% 20%, #fff 0 0.32rem, transparent 0.35rem),
    radial-gradient(circle at 88% 50%, #fff 0 0.32rem, transparent 0.35rem),
    linear-gradient(25deg, transparent 46%, rgba(255,255,255,0.35) 47% 52%, transparent 53%),
    linear-gradient(-25deg, transparent 46%, rgba(255,255,255,0.35) 47% 52%, transparent 53%);
}

.principle-conversion .principle-visual::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 30% 100%);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), var(--lime));
}

.manifesto-lines span {
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

.manifesto-lines strong {
  display: block;
  margin: 0.72rem 0 0.35rem;
  color: #fff;
  font-size: 1rem;
}

.manifesto-lines p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  line-height: 1.32;
}

.final-cta {
  min-height: 78svh;
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(20rem, 0.84fr);
  gap: clamp(1.6rem, 4.6vw, 4rem);
  align-items: center;
  padding-top: clamp(2.4rem, 4.5vw, 3.6rem);
  padding-bottom: clamp(2.4rem, 4.5vw, 3.6rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(215, 255, 69, 0.5), transparent 18rem),
    radial-gradient(circle at 78% 20%, rgba(68, 108, 255, 0.16), transparent 22rem),
    linear-gradient(180deg, #ffffff, #f2f8ff);
}

.final-cta h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5.2vw, 5.9rem);
  line-height: 0.94;
}

.cta-copy p:not(.section-kicker) {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.cta-next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 44rem;
  margin: 1.1rem 0 1rem;
}

.cta-next-steps span {
  padding: 0.65rem 0.72rem;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
}

.application-stage {
  position: relative;
  min-height: 34rem;
  display: grid;
  align-items: end;
}

.application-stage::before {
  content: "";
  position: absolute;
  inset: -8rem -10rem -4rem;
  background: radial-gradient(circle at 50% 16%, rgba(215, 255, 69, 0.66), transparent 24rem);
  opacity: 0.82;
  animation: lightSweep 5s ease-in-out infinite;
}

.light-rig,
.brief-card {
  position: relative;
  z-index: 1;
}

.light-rig {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.bulb {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50% 50% 46% 46%;
  background:
    radial-gradient(circle at 42% 34%, #fff, #fff6aa 42%, #ffd447 66%, #c99616);
  box-shadow: 0 0 34px rgba(255, 212, 71, 0.72), 0 0 120px rgba(215, 255, 69, 0.35);
  animation: bulbFlicker 3s ease-in-out infinite;
}

.light-switch {
  width: 4.4rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: var(--navy);
}

.light-switch span {
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  margin-left: auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(215, 255, 69, 0.7);
}

.brief-card {
  display: grid;
  gap: 0.76rem;
  padding: 1rem;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 100px rgba(35, 76, 128, 0.16);
  backdrop-filter: blur(18px);
}

.brief-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--blue);
  font-family: var(--font-mono);
}

.brief-header strong {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
}

.brief-card label {
  display: grid;
  gap: 0.32rem;
  color: var(--muted);
  font-weight: 800;
}

.brief-card input,
.brief-card select {
  width: 100%;
  border: 1px solid rgba(7, 17, 31, 0.09);
  border-radius: 1rem;
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-weight: 800;
}

.email-note {
  display: grid;
  gap: 0.35rem;
  padding: 0.82rem;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(235, 242, 255, 0.68));
}

.email-note span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.email-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

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

.audit-deliverables span {
  min-height: 4.2rem;
  padding: 0.72rem;
  border: 1px solid rgba(7, 17, 31, 0.07);
  border-radius: 1rem;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(215, 255, 69, 0.28), transparent 5rem),
    rgba(255, 255, 255, 0.72);
  font-weight: 900;
  line-height: 1.15;
}

.brief-platforms,
.launch-steps {
  display: grid;
  gap: 0.5rem;
}

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

.brief-platforms span,
.launch-steps span {
  padding: 0.62rem 0.65rem;
  border-radius: 999px;
  text-align: center;
  font-weight: 900;
  background: rgba(68, 108, 255, 0.09);
}

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

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

.launch-steps span {
  color: var(--muted);
  background: rgba(7, 17, 31, 0.04);
}

.brief-card button {
  width: 100%;
  min-height: 2.85rem;
}

.email-submit {
  display: grid;
  min-height: 2.85rem;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(68, 108, 255, 0.24);
  animation: pulseButton 2.8s ease-in-out infinite;
}

.reveal {
  transform: none;
  opacity: 1;
  transition: none;
}

.hero .reveal {
  transform: none;
  opacity: 1;
}

.reveal.in-view {
  transform: none;
  opacity: 1;
}

@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -1.3rem;
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(18rem);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(68, 108, 255, 0.22);
  }
  50% {
    box-shadow: 0 0 0 1.8rem rgba(68, 108, 255, 0);
  }
}

@keyframes proofSweep {
  0%,
  42% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes signalBreath {
  0%,
  100% {
    opacity: 0.42;
    transform: translateY(-50%) scale(0.9);
  }
  50% {
    opacity: 0.82;
    transform: translateY(-50%) scale(1.06);
  }
}

@keyframes chipPulse {
  0%,
  100% {
    opacity: 0.68;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-0.12rem);
  }
}

@keyframes numberGlow {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.12);
  }
  50% {
    transform: scale(1.012);
    text-shadow: 0 0 54px rgba(215, 255, 69, 0.22);
  }
}

@keyframes visualPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.96;
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0.35rem, -0.32rem, 0);
  }
}

@keyframes deviceFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-0.28rem) rotate(-1.2deg);
  }
}

@keyframes signalBar {
  0%,
  100% {
    transform: scaleY(0.78);
  }
  50% {
    transform: scaleY(1.12);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  35% {
    transform: translate3d(1.2rem, -1.4rem, 0) rotate(4deg);
  }
  70% {
    transform: translate3d(-0.8rem, 1.1rem, 0) rotate(-2deg);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.65rem);
  }
}

@keyframes waveSlide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 4rem 0;
  }
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes photoPan {
  from {
    transform: scale(1.02) translateX(-0.35rem);
  }
  to {
    transform: scale(1.09) translateX(0.35rem);
  }
}

@keyframes audioBounce {
  0%,
  100% {
    height: 0.8rem;
  }
  50% {
    height: 2.4rem;
  }
}

@keyframes graphRise {
  0%,
  100% {
    transform: scaleY(0.72);
  }
  50% {
    transform: scaleY(1.08);
  }
}

@keyframes miniPhoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-0.5rem) rotate(-1deg);
  }
}

@keyframes pulseButton {
  0%,
  100% {
    box-shadow: 0 18px 42px rgba(68, 108, 255, 0.24);
  }
  50% {
    box-shadow: 0 18px 42px rgba(68, 108, 255, 0.36), 0 0 0 0.5rem rgba(68, 108, 255, 0.08);
  }
}

@keyframes feedSlide {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0.75rem);
  }
}

@keyframes lightSweep {
  0%,
  100% {
    transform: translateX(-1rem) scale(0.98);
    opacity: 0.58;
  }
  50% {
    transform: translateX(1rem) scale(1.04);
    opacity: 0.95;
  }
}

@keyframes bulbFlicker {
  0%,
  100% {
    filter: brightness(1);
  }
  8% {
    filter: brightness(0.74);
  }
  12%,
  58% {
    filter: brightness(1.18);
  }
  62% {
    filter: brightness(0.86);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .split-heading,
  .service-block,
  .clipify,
  .manifesto-inner,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-console {
    max-width: 28rem;
  }

  .phone-stack {
    opacity: 0.42;
    right: -14rem;
    width: 46rem;
  }

  .metric-grid,
  .systems-grid,
  .case-grid,
  .platform-grid,
  .services-grid,
  .clipify-proof,
  .clipify-flow,
  .dashboard-stats,
  .offer-row,
  .manifesto-lines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clipify-dashboard {
    grid-template-columns: 1fr;
  }

  .clipify-sidebar {
    display: none;
  }

  .attention-lab {
    min-height: 28rem;
  }

  .service-media {
    min-height: 20rem;
  }

  .services-cta {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 1rem;
    min-height: 3.8rem;
  }

  .brand span:last-child,
  .header-cta-full {
    display: none;
  }

  .site-header {
    padding: 0.45rem 0.5rem;
  }

  .brand-mark {
    width: 3.1rem;
    height: 3.1rem;
  }

  .header-actions {
    margin-left: auto;
  }

  .language-toggle {
    min-width: 3.1rem;
    min-height: 3rem;
    padding: 0 0.62rem;
  }

  .language-code {
    display: none;
  }

  .language-menu {
    right: -0.15rem;
    width: min(13rem, calc(100vw - 2rem));
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0 1rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .header-cta-mobile {
    display: inline;
  }

  .section-block {
    padding-inline: 1rem;
  }

  .hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  h1 {
    font-size: clamp(3.2rem, 15.8vw, 5rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .hero-console {
    display: none;
  }

  .phone-stack {
    top: 9rem;
    right: -21rem;
  }

  .metric-grid,
  .systems-grid,
  .case-grid,
  .platform-grid,
  .services-grid,
  .service-steps,
  .clipify-proof,
  .clipify-flow,
  .dashboard-stats,
  .offer-row,
  .manifesto-lines,
  .cta-next-steps,
  .brief-platforms,
  .launch-steps,
  .node-grid,
  .attention-system,
  .audit-deliverables {
    grid-template-columns: 1fr;
  }

  .attention-metrics {
    grid-column: 1;
  }

  .social-field {
    display: none;
  }

  .hero-social-cloud {
    inset: auto auto 2.5rem 1rem;
    grid-template-columns: repeat(2, max-content);
    opacity: 0.8;
  }

  .metric-card,
  .system-card,
  .service-block {
    min-height: 15.5rem;
  }

  .service-block {
    padding: 0.75rem;
  }

  .service-block h3 {
    font-size: 2rem;
  }

  .platform-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .platform-signal {
    white-space: normal;
  }

  .service-media {
    min-height: 16rem;
  }

  .service-media::after {
    width: 6.6rem;
  }

  .clipify-dashboard {
    min-height: auto;
    padding: 0.75rem;
  }

  .dashboard-topline,
  .light-rig {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta {
    min-height: auto;
  }

  .final-cta h2 {
    max-width: 100%;
    font-size: clamp(2.45rem, 12vw, 3.6rem);
    line-height: 0.98;
  }

  .application-stage {
    min-height: auto;
  }

  .dashboard-topline button {
    width: 100%;
  }

  .offer-card strong {
    margin-top: 3rem;
  }

  .attention-lab {
    min-height: 34rem;
  }

  .loop-core,
  .signal-column {
    position: static;
    width: auto;
    margin-top: 1rem;
  }

  .flow-lines {
    display: none;
  }
}

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