:root {
  --bg: #f6f7f9;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: #ffffff;
  --text: #111318;
  --muted: #667085;
  --line: rgba(17, 19, 24, 0.1);
  --soft-line: rgba(17, 19, 24, 0.07);
  --blue: #0a84ff;
  --cyan: #28c7fa;
  --green: #30d158;
  --pink: #ff2d55;
  --yellow: #ffd60a;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(31, 41, 55, 0.14);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, Segoe UI, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(10, 132, 255, 0.13), transparent 32rem),
    radial-gradient(circle at 85% 20%, rgba(255, 45, 85, 0.12), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #eef1f5 100%);
}

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

img,
video {
  max-width: 100%;
}

code {
  padding: 0.1rem 0.35rem;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.92em;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 16px 0 38px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(20px);
}

.brand,
.footer div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img,
.footer img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
}

.nav nav,
.footer nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav nav a,
.footer nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #2f3642;
  font-size: 0.94rem;
}

.nav nav a:hover,
.footer nav a:hover {
  background: rgba(17, 19, 24, 0.06);
}

.section,
.page-hero {
  margin: 34px 0;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.hero {
  min-height: 690px;
}

.eyebrow,
.mini-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.14rem;
  letter-spacing: 0;
}

p,
li {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 620px;
  font-size: 1.24rem;
}

.manifesto {
  background: rgba(255, 255, 255, 0.88);
}

.manifesto h2 {
  max-width: 13ch;
}

.manifesto p {
  max-width: 820px;
  font-size: 1.12rem;
}

.pitch-card {
  width: min(620px, 100%);
  margin: 30px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
}

.typewriter {
  display: block;
  width: 100%;
  min-height: 72px;
  padding: 0;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: clamp(1.3rem, 2.3vw, 2.05rem);
  font-weight: 740;
  line-height: 1.2;
  cursor: pointer;
}

.cursor {
  display: inline-block;
  width: 0.56rem;
  height: 1.05em;
  margin-left: 4px;
  transform: translateY(0.16em);
  border-radius: 2px;
  background: var(--blue);
  animation: blink 0.82s steps(2, start) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 720;
}

.button.primary {
  color: #fff;
  background: #111318;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #46505f;
  font-size: 0.86rem;
}

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

.device-stage {
  position: relative;
  height: 560px;
  perspective: 1300px;
  transform: rotateX(var(--orbit-x, 0deg)) rotateY(var(--orbit-y, 0deg));
  transition: transform 180ms ease;
  cursor: grab;
}

.device-stage:active {
  cursor: grabbing;
}

.mock-device {
  position: absolute;
  overflow: hidden;
  border: 8px solid #15171c;
  background: #080a0f;
  box-shadow: 0 34px 80px rgba(15, 23, 42, 0.24);
  transform-style: preserve-3d;
}

.tablet {
  inset: 32px 6px auto auto;
  width: min(94%, 520px);
  height: 380px;
  border-radius: 34px;
  transform: rotateX(56deg) rotateZ(-14deg) translate3d(0, 10px, 0);
  animation: tabletFloat 7s ease-in-out infinite;
}

.tablet-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(135deg, #0f172a, #273243 48%, #101828);
}

.ar-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.paint-stroke {
  position: absolute;
  height: 28px;
  border-radius: 999px;
  filter: blur(0.2px);
}

.stroke-one {
  top: 170px;
  left: 56px;
  width: 310px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--yellow));
  transform: rotate(-15deg);
}

.stroke-two {
  top: 225px;
  left: 168px;
  width: 260px;
  background: linear-gradient(90deg, var(--pink), #af52de, var(--blue));
  transform: rotate(12deg);
}

.target-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.target-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.phone {
  right: 22px;
  bottom: 20px;
  width: 245px;
  height: 500px;
  border-radius: 46px;
  transform: rotateY(-18deg) rotateZ(6deg);
  animation: phoneFloat 6s ease-in-out infinite;
}

.device-stage:hover .phone {
  animation: phoneSpin 1.2s ease both;
}

.phone-notch {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 50%;
  width: 92px;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #05070b;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 68% 24%, rgba(255, 214, 10, 0.34), transparent 8rem),
    radial-gradient(circle at 22% 50%, rgba(48, 209, 88, 0.35), transparent 10rem),
    linear-gradient(160deg, #151d2e, #101114 68%, #050507);
}

.phone-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.camera-ui {
  position: absolute;
  top: 48px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.62rem;
  font-weight: 800;
}

.camera-ui .active {
  color: #ffd60a;
}

.lens-flare {
  position: absolute;
  inset: 105px 34px 170px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 18%),
    conic-gradient(from 140deg, var(--yellow), var(--green), var(--cyan), #af52de, var(--pink), var(--yellow));
  opacity: 0.85;
  filter: saturate(1.2);
}

.pip-window {
  position: absolute;
  right: 18px;
  bottom: 118px;
  width: 86px;
  height: 124px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 18px;
  background: linear-gradient(150deg, #e8eef8, #667085);
}

.pip-window span {
  position: absolute;
  left: 27px;
  top: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
}

.shutter {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 68px;
  height: 68px;
  transform: translateX(-50%);
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.shield-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.shield-demo {
  position: relative;
  min-height: 360px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), transparent),
    #111318;
  overflow: hidden;
}

.tile {
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.tile.clean {
  left: 9%;
  top: 18%;
  background: linear-gradient(135deg, #eaf2ff, #48c7ff 42%, #30d158);
}

.tile.protected {
  left: 30%;
  top: 32%;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0 3px, transparent 3px 7px),
    conic-gradient(from 120deg, #ff2d55, #ffd60a, #0a84ff, #af52de, #ff2d55);
  filter: saturate(0.85) contrast(1.2);
}

.tile.restored {
  right: 9%;
  bottom: 18%;
  background: linear-gradient(135deg, #111318, #4f46e5 38%, #28c7fa);
}

.mock-caption {
  text-align: center;
  font-size: 0.88rem;
}

@keyframes tabletFloat {
  50% { transform: rotateX(55deg) rotateZ(-12deg) translate3d(0, -10px, 24px); }
}

@keyframes phoneFloat {
  50% { transform: rotateY(-12deg) rotateZ(4deg) translate3d(0, -12px, 35px); }
}

@keyframes phoneSpin {
  0% { transform: rotateY(-18deg) rotateZ(6deg); }
  48% { transform: rotateY(170deg) rotateZ(0deg) scale(0.98); }
  100% { transform: rotateY(342deg) rotateZ(6deg); }
}

.feature-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: #111318;
  font-size: 0.8rem;
  font-weight: 800;
}

.mode-grid,
.video-grid,
.feature-matrix,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mode-grid article,
.video-card,
.feature-matrix article,
.steps-grid div {
  padding: 20px;
  border: 1px solid var(--soft-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.mode-grid strong,
.steps-grid strong {
  display: block;
  margin-bottom: 8px;
}

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

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.comparison div {
  padding: 24px;
  border: 1px solid var(--soft-line);
  border-radius: 24px;
  background: #fff;
}

.comparison div:last-child {
  color: #fff;
  background: #111318;
}

.comparison div:last-child p,
.comparison div:last-child li {
  color: rgba(255, 255, 255, 0.72);
}

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

.video-card {
  position: relative;
  overflow: hidden;
}

.video-card video,
.video-fallback {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(160deg, #111318, #2d3748);
}

.video-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.video-card.missing video {
  display: none;
}

.video-card.missing .video-fallback {
  display: flex;
}

.control-section {
  display: grid;
  grid-template-columns: auto 1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.control-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: #111318;
  box-shadow: 0 20px 40px rgba(17, 19, 24, 0.22);
}

.control-icon span {
  width: 42px;
  height: 30px;
  border: 4px solid #fff;
  border-radius: 10px;
  position: relative;
}

.control-icon span::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  width: 14px;
  height: 8px;
  border-radius: 5px 5px 0 0;
  background: #fff;
}

.control-icon span::after {
  content: "";
  position: absolute;
  inset: 5px 10px;
  border-radius: 50%;
  border: 4px solid #fff;
}

.control-section ol {
  margin: 0;
  padding-left: 22px;
}

.page-hero {
  max-width: 900px;
}

.page-hero.compact {
  margin-bottom: 18px;
}

.page-hero h1 {
  max-width: 13ch;
}

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

.feature-matrix ul,
.comparison ul {
  padding-left: 1.1rem;
}

.simple-band {
  background: #111318;
}

.simple-band h2,
.simple-band strong {
  color: #fff;
}

.simple-band p {
  color: rgba(255, 255, 255, 0.72);
}

.policy-page {
  width: min(900px, 100%);
  margin: 0 auto;
}

.policy-card {
  margin: 18px 0 34px;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.policy-card h2 {
  margin-top: 34px;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card a {
  color: var(--blue);
  font-weight: 700;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 42px;
  color: #46505f;
}

@media (max-width: 920px) {
  .section-grid,
  .feature-strip,
  .split,
  .control-section,
  .shield-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

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

  .mode-grid,
  .video-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav,
  .footer {
    align-items: flex-start;
    border-radius: 26px;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
  }

  .section,
  .page-hero {
    border-radius: 22px;
  }

  .mode-grid,
  .video-grid,
  .feature-matrix,
  .steps-grid,
  .comparison {
    grid-template-columns: 1fr;
  }

  .device-stage {
    height: 460px;
  }

  .tablet {
    width: 96%;
    height: 320px;
    right: 0;
  }

  .phone {
    width: 205px;
    height: 420px;
    right: 12px;
  }

  .trust-row span,
  .nav nav a {
    font-size: 0.82rem;
  }
}

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

.nav-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.version-switcher { position: relative; }
.version-switcher summary {
  cursor: pointer;
  list-style: none;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}
.version-switcher summary::-webkit-details-marker { display: none; }
.version-switcher summary::after { content: "⌄"; margin-left: 7px; color: var(--muted); }
.version-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 205px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}
.version-menu a {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
}
.version-menu a:hover, .version-menu a[aria-current="page"] { background: #fff0f8; }
.version-menu strong { color: #d42e8a; }

.audience-focus {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 34px;
  align-items: center;
  background: var(--dark);
  color: white;
}
.audience-focus p:not(.eyebrow) { color: rgba(255,255,255,0.72); line-height: 1.55; }
.audience-creative { background: linear-gradient(135deg, #211126, #111114 70%); }
.audience-technical { background: linear-gradient(135deg, #101f29, #111114 70%); }
.focus-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.focus-list li {
  display: grid;
  gap: 4px;
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
}
.focus-list span { color: rgba(255,255,255,0.66); font-size: 14px; line-height: 1.4; }

@media (max-width: 760px) {
  .nav { align-items: flex-start; }
  .nav-tools { align-items: flex-end; gap: 8px; }
  .nav nav { gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
  .nav nav a { font-size: 12px; }
  .audience-focus { grid-template-columns: 1fr; }
}

.paint-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.72;
  mix-blend-mode: multiply;
}
.site-shell { position: relative; z-index: 1; }
.motion-lab { overflow: hidden; }
.motion-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.motion-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,231,244,.72));
  box-shadow: 0 22px 50px rgba(120,29,91,.14);
  transform: translate3d(0, var(--parallax, 0), 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), box-shadow 260ms ease, filter 260ms ease;
}
.motion-card:hover { box-shadow: 0 32px 70px rgba(120,29,91,.24); filter: saturate(1.16); }
.motion-card h3 { margin: 20px 0 8px; }
.motion-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.motion-icon { position: relative; display: grid; place-items: center; width: 94px; height: 94px; margin: 2px 0 4px; transform: translateZ(28px); }
.icon-spray span { position: absolute; color: #ff2d55; font-size: 24px; animation: spray-flick 1.8s ease-in-out infinite; }
.icon-spray span:nth-child(1) { transform: translate(-28px,-22px) rotate(-18deg); animation-delay: -.15s; }
.icon-spray span:nth-child(2) { transform: translate(28px,-12px) rotate(16deg); color: #ff9500; animation-delay: -.8s; }
.icon-spray span:nth-child(3) { transform: translate(20px,24px) rotate(28deg); color: #af52de; animation-delay: -1.2s; }
.icon-spray b { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px 28px 12px 24px; background: #111114; color: #ffd60a; font-size: 28px; transform: rotate(-11deg); box-shadow: 8px 9px 0 #ff2d55; animation: spray-can 2.7s ease-in-out infinite; }
.target-ring { position: absolute; border: 2px solid #ff2d55; border-radius: 50%; }
.ring-one { inset: 12px; opacity: .38; animation: target-spin 6s linear infinite; }
.ring-two { inset: 28px; border-color: #ff9500; animation: target-spin 3s linear infinite reverse; }
.icon-target b { color: #af52de; font-size: 26px; animation: target-pulse 1.9s ease-in-out infinite; }
.icon-dual .icon-card { position: absolute; width: 43px; height: 55px; border: 2px solid #ff2d55; border-radius: 10px; background: rgba(255,255,255,.7); }
.icon-dual .card-back { transform: translate(-10px, 7px) rotate(-9deg); opacity: .35; }
.icon-dual .card-front { transform: translate(9px, -7px) rotate(8deg); border-color: #af52de; }
.icon-spark { position: relative; z-index: 1; font-size: 24px; color: #ff9500; animation: creative-pop 1.8s ease-in-out infinite; }
.icon-mask span { position: absolute; font-size: 38px; color: #af52de; animation: mask-shift 2.4s ease-in-out infinite; }
.icon-mask span:nth-child(2) { color: #ff2d55; animation-delay: -.8s; }
.icon-mask span:nth-child(3) { color: #ff9500; animation-delay: -1.5s; }
@keyframes spray-flick { 50% { margin-top: -9px; transform: scale(1.3) rotate(14deg); } }
@keyframes spray-can { 50% { transform: rotate(8deg) translateY(-5px); } }
@keyframes target-spin { to { transform: rotate(360deg); } }
@keyframes target-pulse { 50% { transform: scale(1.35) rotate(12deg); } }
@keyframes creative-pop { 50% { transform: scale(1.3) rotate(18deg); } }
@keyframes mask-shift { 50% { transform: translateX(9px) rotate(12deg); } }
@media (max-width: 900px) { .motion-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .motion-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .paint-canvas { display: none; }
  .motion-card, .motion-card:hover { transform: none !important; transition: none !important; }
  .motion-icon *, .motion-icon::before, .motion-icon::after { animation: none !important; }
}

/* Landing B: artist and creative workflow */
.artist-hero h1 { max-width: 10ch; }
.creative-scene { position: relative; overflow: hidden; background: linear-gradient(145deg, #171329, #4a164e 54%, #151922); }
.creative-grid { position: absolute; inset: 0; opacity: .26; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 34px 34px; transform: perspective(500px) rotateX(58deg) scale(1.5); transform-origin: bottom; }
.creative-room { position: absolute; inset: 20% 6% 0; border: 1px solid rgba(255,255,255,.18); border-bottom: 0; transform: perspective(600px) rotateX(44deg) rotateY(-6deg); background: linear-gradient(135deg, rgba(255,255,255,.1), transparent); }
.creative-stroke { position: absolute; height: 22px; border-radius: 99px; filter: drop-shadow(0 9px 7px rgba(0,0,0,.28)); animation: creativeStroke 4s ease-in-out infinite; }
.stroke-red { left: 17%; top: 35%; width: 300px; background: linear-gradient(90deg, #ff2d55, #ff375f, #af52de); transform: rotate(-14deg); }
.stroke-yellow { left: 36%; top: 53%; width: 260px; background: linear-gradient(90deg, #ffd60a, #ff9500, #ff2d55); transform: rotate(12deg); animation-delay: -1.3s; }
.stroke-blue { left: 23%; top: 70%; width: 330px; background: linear-gradient(90deg, #0a84ff, #28c7fa, #30d158); transform: rotate(-6deg); animation-delay: -2.4s; }
@keyframes creativeStroke { 50% { transform: translateX(18px) rotate(-7deg) scaleX(1.08); } }
.creative-tag { position: absolute; right: 24px; bottom: 26px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 14px; color: rgba(255,255,255,.72); background: rgba(0,0,0,.3); font-size: .7rem; letter-spacing: .12em; }.creative-tag strong { color: #fff; font-size: .95rem; letter-spacing: 0; }
.creative-scene img { position: absolute; left: 42px; bottom: 22px; object-fit: contain; filter: drop-shadow(0 18px 15px rgba(0,0,0,.35)); animation: canFloat 3.6s ease-in-out infinite; }.creative-scene img + * { pointer-events: none; }@keyframes canFloat { 50% { transform: translateY(-11px) rotate(-8deg); } }
.creative-thesis { background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(255,231,244,.82)); }.creative-thesis h2 { max-width: 14ch; }
.artist-mode-section { background: #111114; color: #fff; }.artist-mode-section p { color: rgba(255,255,255,.7); }.artist-mode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }.artist-mode-card { min-height: 220px; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(255,255,255,.07); transition: transform .3s ease, background .3s ease; }.artist-mode-card:hover, .artist-mode-card.active { transform: translateY(-8px); background: rgba(255,255,255,.1); }.artist-mode-card h3 { margin-top: 22px; }.mode-orbit { display: grid; place-items: center; width: 60px; height: 60px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: transparent; color: #ffd60a; font-weight: 900; animation: modeOrbit 3.4s ease-in-out infinite; }@keyframes modeOrbit { 50% { transform: rotate(14deg) scale(1.08); } }
.paint-space-section { display: grid; grid-template-columns: minmax(0,.9fr) minmax(340px,1.1fr); gap: 44px; align-items: center; }.paint-space-section h2 { max-width: 12ch; }.workflow-steps { display: grid; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; counter-reset: steps; }.workflow-steps li { display: grid; grid-template-columns: 34px 1fr; gap: 8px 12px; align-items: center; padding: 13px 15px; border: 1px solid var(--soft-line); border-radius: 16px; background: rgba(255,255,255,.66); counter-increment: steps; }.workflow-steps li::before { content: counter(steps); display: grid; place-items: center; width: 29px; height: 29px; grid-row: span 2; border-radius: 50%; color: #fff; background: #111114; font-size: .75rem; font-weight: 800; }.workflow-steps span { grid-column: 2; color: var(--muted); font-size: .88rem; }.space-paint-demo { position: relative; min-height: 390px; overflow: hidden; border-radius: 28px; background: linear-gradient(#26133e 0 67%, #151922 68%); box-shadow: 0 28px 65px rgba(120,29,91,.22); }.wall-plane { position: absolute; inset: 36px 8% 58px; border: 2px solid rgba(255,255,255,.2); transform: perspective(600px) rotateY(-13deg) rotateX(5deg); background: linear-gradient(135deg, rgba(255,255,255,.08), transparent); }.space-line { position: absolute; height: 19px; border-radius: 99px; box-shadow: 0 0 20px currentColor; animation: spaceLine 3.6s ease-in-out infinite; }.line-one { left: 14%; top: 35%; width: 250px; color: #ff2d55; background: #ff2d55; transform: rotate(-13deg); }.line-two { left: 29%; top: 52%; width: 220px; color: #ffd60a; background: #ffd60a; transform: rotate(16deg); animation-delay: -1.1s; }.line-three { left: 18%; top: 70%; width: 290px; color: #28c7fa; background: #28c7fa; transform: rotate(-8deg); animation-delay: -2.1s; }.brush-cursor { position: absolute; right: 22%; top: 22%; z-index: 2; color: #fff; font-size: 3.4rem; filter: drop-shadow(0 0 12px #ff2d55); animation: brushCursor 2.5s ease-in-out infinite; }@keyframes spaceLine { 50% { transform: translateX(18px) rotate(-7deg) scaleX(1.07); } }@keyframes brushCursor { 50% { transform: translate(12px,12px) rotate(18deg); } }
.brush-section { background: rgba(255,255,255,.9); }.brush-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }.brush-grid article { min-height: 230px; padding: 22px; border: 1px solid var(--soft-line); border-radius: 22px; background: rgba(255,255,255,.72); box-shadow: 0 16px 35px rgba(120,29,91,.08); }.brush-symbol { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; color: #fff; background: transparent; font-size: 1.5rem; }.brush-grid h3 { margin: 20px 0 8px; }.brush-grid p { margin-bottom: 0; font-size: .92rem; }
.texture-section, .colour-save-section, .artwork-library-section, .target-section, .timelapse-artwork-section, .editor-roadmap-section, .censorship-section, .editing-section { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 44px; align-items: center; }.texture-section { background: linear-gradient(145deg, #211126, #111114); color: #fff; }.texture-section p { color: rgba(255,255,255,.72); }.texture-demo { display: grid; grid-template-columns: 1fr auto 1fr; gap: 13px; align-items: center; }.texture-camera-view, .texture-result { position: relative; min-height: 245px; padding: 15px; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 20px; color: rgba(255,255,255,.7); background: linear-gradient(145deg, #243b55, #141e30); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }.texture-camera-view i, .texture-result i { position: absolute; inset: 62px 16px 16px; border-radius: 14px; background: linear-gradient(135deg, #8ec5fc, #e0c3fc 46%, #ff2d55); }.texture-camera-view i::after { content: "live room"; position: absolute; left: 12px; bottom: 10px; color: rgba(255,255,255,.8); font-size: .7rem; letter-spacing: 0; }.texture-result { background: linear-gradient(145deg, #2c143c, #171129); }.texture-result i { background: repeating-linear-gradient(24deg, rgba(255,255,255,.2) 0 5px, transparent 5px 14px), linear-gradient(90deg, #ff2d55, #ffd60a, #0a84ff); transform: rotate(-13deg) scale(1.2); }.texture-arrow { color: #ffd60a; font-size: 2rem; }.feature-callout { display: block; margin-top: 22px; color: #ffd60a; font-size: 1.2rem; }.colour-save-section { grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); }.colour-flow { display: flex; align-items: center; gap: 12px; margin-top: 24px; }.colour-flow span { padding: 12px 16px; border-radius: 999px; color: #fff; background: linear-gradient(90deg, #ff2d55, #af52de); font-weight: 800; }.colour-flow span:nth-of-type(2) { background: #ff9500; }.colour-flow span:nth-of-type(3) { background: #0a84ff; }.colour-flow b { color: #ff2d55; }.save-reload-card { padding: 28px; border: 1px solid var(--soft-line); border-radius: 24px; background: linear-gradient(145deg, rgba(255,231,244,.78), rgba(255,255,255,.78)); box-shadow: 0 20px 45px rgba(120,29,91,.12); }.save-reload-card h3 { font-size: 1.65rem; }.status-label, .roadmap-status { display: inline-flex; padding: 8px 11px; border-radius: 999px; color: #fff; background: #af52de; font-size: .74rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.artwork-library-section { background: rgba(255,255,255,.9); }.library-visual { position: relative; min-height: 320px; overflow: hidden; border-radius: 28px; background: linear-gradient(145deg, #2a1741, #111114); }.library-card { position: absolute; display: grid; gap: 7px; padding: 18px; border: 1px solid rgba(255,255,255,.24); border-radius: 18px; color: #fff; background: rgba(255,255,255,.1); box-shadow: 0 25px 55px rgba(0,0,0,.25); }.card-main { inset: 38px 18% 70px 8%; background: linear-gradient(145deg, #ff2d55, #af52de 55%, #0a84ff); transform: rotate(-4deg); }.card-main span, .card-mini { font-size: .7rem; font-weight: 800; letter-spacing: .12em; }.card-main strong { font-size: 1.35rem; }.card-main small { color: rgba(255,255,255,.72); }.card-mini { right: 7%; bottom: 37px; transform: rotate(8deg); }.card-mini.second { right: 31%; bottom: 20px; transform: rotate(-10deg); background: rgba(255,149,0,.5); }.target-section { background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(255,231,244,.74)); }.target-artwork-demo { position: relative; min-height: 340px; overflow: hidden; border-radius: 28px; background: linear-gradient(145deg, #14213d, #2a1741); }.physical-artwork { position: absolute; left: 13%; top: 22%; width: 39%; height: 55%; display: grid; place-items: end center; padding-bottom: 14px; color: rgba(255,255,255,.85); background: linear-gradient(135deg, #ff2d55, #ffd60a, #0a84ff); box-shadow: 0 25px 45px rgba(0,0,0,.24); transform: rotate(-5deg); font-size: .68rem; font-weight: 800; }.target-layer { position: absolute; right: 9%; top: 17%; width: 50%; height: 66%; padding: 18px; border: 2px dashed #ffd60a; border-radius: 22px; color: #fff; background: linear-gradient(145deg, rgba(255,45,85,.35), rgba(175,82,222,.2)); transform: rotate(7deg); }.target-layer b { position: relative; z-index: 2; }.target-layer i { position: absolute; left: 10%; right: 10%; top: 42%; height: 34px; border-radius: 99px; background: linear-gradient(90deg, #28c7fa, #30d158, #ffd60a); transform: rotate(-15deg); filter: drop-shadow(0 0 13px #28c7fa); }.target-layer small { position: absolute; right: 15px; bottom: 14px; color: rgba(255,255,255,.68); }.timelapse-artwork-section { background: #111114; color: #fff; }.timelapse-artwork-section p { color: rgba(255,255,255,.72); }.timelapse-steps { display: grid; gap: 9px; }.timelapse-steps > div { display: grid; grid-template-columns: 35px 1fr; gap: 4px 10px; align-items: center; padding: 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; background: rgba(255,255,255,.07); }.timelapse-steps span { display: grid; place-items: center; width: 28px; height: 28px; grid-row: span 2; border-radius: 50%; color: #111114; background: #ffd60a; font-size: .7rem; font-weight: 900; }.timelapse-steps small { color: rgba(255,255,255,.58); }.editor-roadmap-section { background: rgba(255,255,255,.9); }.roadmap-note { padding: 16px; border-left: 4px solid #ff9500; background: rgba(255,149,0,.1); }.editor-stack { position: relative; min-height: 310px; perspective: 900px; }.editor-layer { position: absolute; display: grid; place-items: center; width: 58%; height: 46%; border: 2px solid rgba(255,255,255,.8); border-radius: 18px; color: #fff; font-weight: 900; letter-spacing: .1em; box-shadow: 0 22px 50px rgba(31,41,55,.2); transform: rotateX(51deg) rotateZ(-14deg); }.layer-image { left: 6%; top: 8%; background: #0a84ff; }.layer-video { left: 19%; top: 24%; background: #ff2d55; }.layer-ar { left: 32%; top: 40%; background: #af52de; }.layer-space { left: 45%; top: 56%; background: #30d158; }.capture-process-section { background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(255,231,244,.72)); }.capture-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }.capture-process-grid article { min-height: 220px; padding: 22px; border: 1px solid var(--soft-line); border-radius: 22px; background: rgba(255,255,255,.7); }.capture-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; color: #fff; background: transparent; font-size: 1.4rem; }.capture-process-grid h3 { margin: 20px 0 8px; }.capture-process-grid p { margin-bottom: 0; font-size: .92rem; }
.censorship-section { background: #111114; color: #fff; }.censorship-section p { color: rgba(255,255,255,.72); }.censor-demo { position: relative; min-height: 285px; overflow: hidden; border-radius: 24px; background: linear-gradient(145deg, #3c164c, #131827); }.censor-person { position: absolute; left: 40%; top: 23%; display: grid; place-items: center; width: 100px; height: 120px; border-radius: 50% 50% 35% 35%; color: #fff; background: linear-gradient(#f4c7a1 0 30%, #5e5ce6 31%); font-size: 2rem; }.censor-controls { position: absolute; left: 18px; right: 18px; bottom: 17px; display: flex; flex-wrap: wrap; gap: 7px; }.censor-controls span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: rgba(255,255,255,.78); background: rgba(255,255,255,.1); font-size: .7rem; }.editing-section { background: rgba(255,255,255,.9); }.edit-column { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }.edit-column h3 { margin: 18px 0 0; }.edit-column p { margin-bottom: 0; }.timeline-editor { padding: 30px 24px; border-radius: 24px; background: #111114; box-shadow: 0 25px 55px rgba(17,17,20,.2); }.timeline-strip { display: grid; grid-template-columns: 1.3fr .8fr 1.1fr .6fr; gap: 4px; height: 105px; padding: 8px; border-radius: 14px; background: linear-gradient(90deg, #ff2d55, #ffd60a, #0a84ff, #30d158); }.timeline-strip i { border-radius: 9px; background: rgba(255,255,255,.23); }.editor-controls { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }.editor-controls span { padding: 9px 11px; border-radius: 999px; color: #111114; background: #fff; font-size: .7rem; font-weight: 900; }.unified-section { background: #111114; color: #fff; }.unified-section p { color: rgba(255,255,255,.72); }.unified-flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }.unified-flow div { display: grid; gap: 12px; min-height: 125px; padding: 15px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(255,255,255,.07); font-size: .88rem; }.unified-flow span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: #111114; background: #ffd60a; font-size: .7rem; font-weight: 900; }.community-creative-section { display: grid; grid-template-columns: 1fr .8fr; gap: 34px; align-items: center; background: linear-gradient(145deg, #eaf5ff, #fff); }.community-creative-section h2 { max-width: 14ch; }.community-orbit { position: relative; min-height: 280px; border-radius: 50%; border: 1px dashed rgba(175,82,222,.55); animation: communitySpin 18s linear infinite; }.community-orbit span { position: absolute; padding: 9px 11px; border-radius: 999px; color: #fff; background: #af52de; font-size: .75rem; font-weight: 800; }.community-orbit span:nth-child(1) { left: 37%; top: -7%; }.community-orbit span:nth-child(2) { right: -5%; top: 35%; background: #ff2d55; }.community-orbit span:nth-child(3) { left: 34%; bottom: -7%; background: #0a84ff; }.community-orbit span:nth-child(4) { left: -8%; top: 57%; background: #ff9500; }.community-orbit span:nth-child(5) { left: -4%; top: 14%; background: #30d158; }@keyframes communitySpin { to { transform: rotate(360deg); } }
.creative-roadmap { background: rgba(255,255,255,.9); }.roadmap-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }.roadmap-columns > div { min-height: 220px; padding: 22px; border: 1px solid var(--soft-line); border-radius: 22px; background: rgba(255,255,255,.7); }.roadmap-columns h3 { margin-top: 22px; line-height: 1.45; }.roadmap-status.now { background: #30d158; }.roadmap-status.building { background: #ff9500; }.roadmap-status.later { background: #af52de; }.creative-final { text-align: center; color: #fff; background: linear-gradient(145deg, #211126, #111114); }.creative-final h2 { max-width: 14ch; margin-right: auto; margin-left: auto; }.creative-final p { max-width: 650px; margin-right: auto; margin-left: auto; color: rgba(255,255,255,.72); }.creative-final .hero-actions { justify-content: center; margin-top: 22px; }.creative-final .button.primary { color: #111114; background: #fff; }.creative-final .button.secondary { color: #fff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.1); }
@media (max-width: 980px) { .brush-grid, .capture-process-grid { grid-template-columns: repeat(2, 1fr); }.unified-flow { grid-template-columns: repeat(3, 1fr); }.artist-mode-grid { grid-template-columns: 1fr; }.texture-section, .colour-save-section, .artwork-library-section, .target-section, .timelapse-artwork-section, .editor-roadmap-section, .censorship-section, .editing-section, .paint-space-section { grid-template-columns: 1fr; }.community-creative-section { grid-template-columns: 1fr; } }
@media (max-width: 650px) { .brush-grid, .capture-process-grid, .unified-flow { grid-template-columns: 1fr; }.edit-column { grid-template-columns: 1fr; }.texture-demo { grid-template-columns: 1fr; }.texture-arrow { text-align: center; transform: rotate(90deg); }.colour-flow { flex-wrap: wrap; }.roadmap-columns { grid-template-columns: 1fr; }.creative-scene img { left: 18px; width: 70px; height: 70px; }.creative-tag { right: 12px; bottom: 12px; }.motion-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .creative-stroke, .creative-scene img, .mode-orbit, .space-line, .brush-cursor, .community-orbit { animation: none !important; } }

/* Feature/tool icon badge -- hover-animated soft 3D icon overlay */
.section, .page-hero { position: relative; }
.feature-icon-badge { position: absolute; top: 18px; right: 18px; z-index: 3; width: 50px; height: 50px; padding: 7px; border-radius: 14px; background: rgba(255,255,255,.82); box-shadow: 0 10px 26px rgba(17,19,24,.14); cursor: pointer; }
.feature-icon-badge img { display: block; width: 100%; height: 100%; object-fit: contain; transition: transform .3s ease; }
.feature-icon-badge:hover img, .feature-icon-badge:focus img { transform: scale(1.08); }
@media (max-width: 650px) { .feature-icon-badge { top: 12px; right: 12px; width: 40px; height: 40px; padding: 5px; } }
@media (prefers-reduced-motion: reduce) { .feature-icon-badge img { transition: none !important; } }

.mode-orbit img, .brush-symbol img { display: block; width: 68%; height: 68%; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,.25)); pointer-events: none; }
.mode-orbit, .brush-symbol { cursor: pointer; }

/* Logo camera-hover effect: shutter click + comic flash + page glitch */
.camera-flash-overlay { position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0; background: #fff; }
.camera-flash-overlay.is-active { animation: cameraFlashPage 320ms ease-out; }
@keyframes cameraFlashPage {
  0%   { opacity: 0;    filter: blur(0px) saturate(1) hue-rotate(0deg); }
  8%   { opacity: .55;  filter: blur(2px) saturate(1.5) hue-rotate(6deg); }
  20%  { opacity: 1;    filter: blur(7px) saturate(2.2) hue-rotate(-10deg); }
  38%  { opacity: .8;   filter: blur(3px) saturate(1.6) hue-rotate(8deg); }
  60%  { opacity: .35;  filter: blur(1px) saturate(1.1); }
  100% { opacity: 0;    filter: blur(0px) saturate(1); }
}
.brand-mark, .footer img { cursor: pointer; }
.logo-comic-flash { position: absolute; inset: -60%; z-index: 5; pointer-events: none; opacity: 0; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.95), rgba(255,214,10,.55) 35%, transparent 68%); }
.logo-comic-flash::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: repeating-conic-gradient(from 0deg, rgba(255,255,255,.9) 0deg 4deg, transparent 4deg 18deg); mix-blend-mode: screen; }
.logo-comic-flash.is-active { animation: logoComicFlash 340ms ease-out; }
@keyframes logoComicFlash {
  0%   { opacity: 0;   transform: scale(.3) rotate(0deg); }
  22%  { opacity: 1;   transform: scale(1.05) rotate(8deg); }
  100% { opacity: 0;   transform: scale(1.7) rotate(14deg); }
}
@media (prefers-reduced-motion: reduce) { .camera-flash-overlay, .logo-comic-flash { animation: none !important; } }
