: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: #eef5ff; }
.version-menu strong { color: var(--blue); }

.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.5;
}
.site-shell { position: relative; z-index: 1; }
.motion-lab { overflow: hidden; }
.motion-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.motion-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.84);
  border-radius: 24px;
  background: rgba(255,255,255,0.68);
  box-shadow: 0 18px 42px rgba(31,41,55,0.1);
  transform: translate3d(0, var(--parallax, 0), 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}
.motion-card:hover { box-shadow: 0 28px 60px rgba(31,41,55,0.16); background: rgba(255,255,255,0.86); }
.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: 92px; height: 92px; margin: 2px 0 4px; color: var(--blue); transform: translateZ(24px); }
.motion-icon svg { width: 62px; height: 62px; fill: none; stroke: currentColor; stroke-width: 3; }
.icon-capture .icon-ring { position: absolute; inset: 10px; border: 1px solid currentColor; border-radius: 50%; opacity: .28; animation: kamera-breathe 2.8s ease-in-out infinite; }
.icon-capture .icon-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: kamera-blink 2.8s ease-in-out infinite; }
.icon-dual .icon-card { position: absolute; width: 43px; height: 55px; border: 2px solid currentColor; border-radius: 10px; background: rgba(255,255,255,.72); }
.icon-dual .card-back { transform: translate(-10px, 7px) rotate(-9deg); opacity: .35; }
.icon-dual .card-front { transform: translate(9px, -7px) rotate(8deg); }
.icon-spark { position: relative; z-index: 1; font-size: 24px; color: var(--green); animation: kamera-pop 2.4s ease-in-out infinite; }
.icon-shield span { position: absolute; display: grid; place-items: center; width: 46px; height: 56px; border: 2px solid currentColor; border-radius: 48% 48% 56% 56%; font-size: 21px; font-weight: 800; }
.icon-shield .shield-a { transform: translate(-8px, 5px); opacity: .28; }
.icon-shield .shield-b { transform: translate(8px, -5px); color: var(--green); animation: kamera-shield 3.2s ease-in-out infinite; }
@keyframes kamera-breathe { 50% { transform: scale(1.12); opacity: .58; } }
@keyframes kamera-blink { 50% { transform: scale(1.5); opacity: .36; } }
@keyframes kamera-pop { 0%,100% { transform: scale(.92) rotate(-4deg); } 50% { transform: scale(1.14) rotate(4deg); } }
@keyframes kamera-shield { 50% { transform: translate(8px, -5px) rotate(7deg); } }
@media (max-width: 760px) { .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 A: everyday storytelling components */
.everyday-scene { position: relative; overflow: hidden; background: linear-gradient(150deg, #a9ddff, #e9f8ff 52%, #95d98a); }
.scene-sun { position: absolute; top: 36px; right: 56px; width: 70px; height: 70px; border-radius: 50%; background: #ffd60a; box-shadow: 0 0 50px rgba(255,214,10,.7); }
.scene-wall { position: absolute; right: -30px; bottom: 0; width: 70%; height: 64%; transform: skewY(-6deg); background: linear-gradient(135deg, rgba(255,255,255,.42), rgba(10,132,255,.1)); }
.scene-person { position: absolute; left: 24%; bottom: 54px; width: 88px; height: 150px; border-radius: 48px 48px 22px 22px; background: linear-gradient(#ff9f0a 0 34%, #5e5ce6 35%); transform: rotate(-9deg); }
.scene-person::before { content: ""; position: absolute; left: 24px; top: -43px; width: 49px; height: 49px; border-radius: 50%; background: #f4c7a1; }
.scene-person i, .scene-person b { position: absolute; left: 67px; top: 42px; width: 118px; height: 12px; border-radius: 99px; background: #f4c7a1; transform: rotate(-25deg); transform-origin: left center; }
.scene-person b { left: 70px; top: 70px; width: 106px; transform: rotate(13deg); }
.scene-paint { position: absolute; height: 17px; border-radius: 99px; filter: drop-shadow(0 7px 8px rgba(17,19,24,.15)); animation: scenePaint 4.6s ease-in-out infinite; }
.paint-a { left: 43%; top: 40%; width: 190px; background: linear-gradient(90deg, #ff2d55, #af52de, #0a84ff); transform: rotate(-14deg); }
.paint-b { left: 49%; top: 55%; width: 170px; background: linear-gradient(90deg, #30d158, #ffd60a, #ff9500); transform: rotate(12deg); animation-delay: -1.4s; }
.paint-c { left: 57%; top: 69%; width: 130px; background: #ff2d55; transform: rotate(-8deg); animation-delay: -2.5s; }
@keyframes scenePaint { 50% { transform: translateX(18px) rotate(-9deg) scaleX(1.08); } }
.mode-section { background: rgba(255,255,255,.9); }
.mode-switcher { padding: 8px; border: 1px solid var(--line); border-radius: 24px; background: rgba(246,247,249,.82); }
.mode-tabs { display: flex; flex-wrap: wrap; gap: 8px; padding: 5px; }
.mode-tab { padding: 11px 15px; border: 0; border-radius: 999px; color: var(--muted); background: transparent; font: inherit; font-weight: 720; cursor: pointer; }
.mode-tab.active, .mode-tab:hover { color: var(--text); background: #fff; box-shadow: 0 8px 20px rgba(31,41,55,.1); }
.mode-panel { min-height: 120px; padding: 26px 22px 18px; border-radius: 18px; background: #fff; }
.mode-panel strong { display: block; margin-bottom: 8px; font-size: 1.3rem; }
.mode-panel p { max-width: 650px; margin-bottom: 0; }
.feature-story, .privacy-story, .ar-story { display: grid; grid-template-columns: minmax(0, .88fr) minmax(320px, 1.12fr); gap: 44px; align-items: center; }
.feature-story h2, .privacy-story h2, .ar-story h2 { max-width: 12ch; }
.layout-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; perspective: 900px; }
.layout-card { position: relative; min-height: 245px; padding: 18px; overflow: hidden; border-radius: 22px; color: #fff; background: #111318; box-shadow: 0 22px 50px rgba(17,19,24,.22); transform: rotateX(7deg) rotateY(-7deg); transition: transform .35s ease; }
.layout-card:hover { transform: rotateX(0) rotateY(0) translateY(-10px); }
.layout-card span { position: relative; z-index: 2; font-size: .78rem; font-weight: 800; }
.layout-card i, .layout-card b, .layout-card em { position: absolute; display: block; border: 2px solid rgba(255,255,255,.8); border-radius: 16px; background: linear-gradient(145deg, #30d158, #0a84ff); }
.layout-pip i { inset: 48px 18px 18px; }.layout-pip b { right: 27px; bottom: 34px; width: 55px; height: 76px; background: #ff2d55; }
.layout-split i { inset: 48px 50% 18px 18px; border-radius: 16px 0 0 16px; }.layout-split b { inset: 48px 18px 18px 50%; border-radius: 0 16px 16px 0; background: #af52de; }
.layout-custom i { left: 20px; top: 68px; width: 92px; height: 120px; }.layout-custom b { right: 18px; top: 88px; width: 80px; height: 92px; background: #ff9500; }.layout-custom em { left: 72px; bottom: 22px; width: 102px; height: 57px; background: #30d158; }
.group-photo-story { background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(228,245,255,.8)); }
.group-photo-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 30px 0; }
.group-photo-flow > div { padding: 18px; border: 1px solid var(--soft-line); border-radius: 18px; background: rgba(255,255,255,.7); }
.group-photo-flow span { display: inline-grid; place-items: center; width: 30px; height: 30px; margin-bottom: 18px; border-radius: 50%; color: #fff; background: #111318; font-size: .75rem; font-weight: 800; }
.group-photo-flow strong { display: block; margin-bottom: 7px; }.group-photo-flow p { margin-bottom: 0; font-size: .9rem; }
.group-photo-visual { position: relative; height: 240px; overflow: hidden; border-radius: 26px; background: linear-gradient(#a9ddff 0 60%, #83bd72 61%); }
.photo-frame { position: absolute; inset: 26px 18%; border: 4px solid rgba(255,255,255,.9); border-radius: 18px; box-shadow: 0 20px 50px rgba(17,19,24,.18); }
.photo-frame span { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); color: #fff; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; white-space: nowrap; }
.person { position: absolute; bottom: 40px; width: 48px; height: 84px; border-radius: 24px 24px 14px 14px; background: #5e5ce6; z-index: 2; }.person::before { content: ""; position: absolute; left: 9px; top: -24px; width: 30px; height: 30px; border-radius: 50%; background: #f4c7a1; }
.person-one { left: 25%; background: #ff9f0a; }.person-two { left: 39%; background: #30d158; }.person-three { left: 53%; background: #af52de; }.person-four { left: 67%; background: #ff2d55; }
.qr-story { grid-template-columns: minmax(300px, 1.05fr) minmax(0, .95fr); }.qr-demo { position: relative; min-height: 340px; padding: 30px; overflow: hidden; border-radius: 28px; color: #fff; background: #111318; box-shadow: 0 25px 60px rgba(17,19,24,.2); }
.qr-pattern { display: grid; place-items: center; height: 160px; color: #fff; font-size: 8rem; line-height: 1; opacity: .88; }.qr-result { display: grid; gap: 5px; padding: 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; background: rgba(255,255,255,.1); }.qr-result span, .qr-result small { color: rgba(255,255,255,.6); font-size: .72rem; letter-spacing: .1em; }.qr-result strong { font-size: 1.1rem; }.scan-line { position: absolute; left: 25px; right: 25px; top: 90px; height: 2px; background: #30d158; box-shadow: 0 0 18px #30d158; animation: qrScan 3.2s ease-in-out infinite; }@keyframes qrScan { 50% { top: 205px; } }
.privacy-story { background: #111318; color: #fff; }.privacy-story p, .privacy-story li { color: rgba(255,255,255,.7); }.check-list { display: grid; gap: 9px; margin: 24px 0 0; padding: 0; list-style: none; }.check-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: 9px; border-radius: 50%; color: #111318; background: #30d158; font-weight: 800; }
.privacy-lock-visual { position: relative; min-height: 330px; perspective: 900px; }.album { position: absolute; display: grid; place-items: center; border-radius: 24px; box-shadow: 0 30px 80px rgba(0,0,0,.3); }.album-back { inset: 25px 14% 75px 6%; color: rgba(255,255,255,.7); background: #2e3542; transform: rotate(-8deg); }.album-front { inset: 70px 8% 20px 22%; color: #fff; background: linear-gradient(145deg, #4f46e5, #28c7fa); transform: rotate(7deg); }.album-front span { font-size: .7rem; font-weight: 800; letter-spacing: .14em; }.album-front b { font-size: 4.5rem; }.album-front small { color: rgba(255,255,255,.72); }
.shield-labels { position: absolute; inset: auto 12% 16px; display: flex; justify-content: space-between; color: rgba(255,255,255,.7); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.ar-story-visual { position: relative; min-height: 330px; overflow: hidden; border-radius: 28px; background: linear-gradient(#c3e9ff 0 70%, #a5d28e 71%); box-shadow: 0 24px 60px rgba(31,41,55,.14); }.room-wall { position: absolute; inset: 30px 13% 45px; border-radius: 10px; background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(10,132,255,.18)); box-shadow: inset 0 0 0 2px rgba(255,255,255,.6); }.room-wall::after { content: ""; position: absolute; left: 23%; top: 28%; width: 170px; height: 78px; border-radius: 50% 45% 55% 40%; background: linear-gradient(90deg, #ff2d55, #af52de, #0a84ff); transform: rotate(-12deg); filter: drop-shadow(0 10px 7px rgba(17,19,24,.14)); }.ar-message { position: absolute; left: 22%; top: 41%; z-index: 2; color: #fff; font-size: 1.1rem; font-weight: 900; transform: rotate(-8deg); text-shadow: 0 2px 10px rgba(17,19,24,.25); }.ar-brush { position: absolute; right: 17%; top: 29%; z-index: 3; color: #ffd60a; font-size: 3.4rem; animation: brushFloat 2.4s ease-in-out infinite; }.ar-floor { position: absolute; inset: auto 0 0; height: 46px; background: rgba(48,209,88,.55); }@keyframes brushFloat { 50% { transform: translate(10px, -8px) rotate(15deg); } }
.example-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }.example-pills span { padding: 9px 12px; border: 1px solid var(--soft-line); border-radius: 999px; color: #46505f; background: rgba(255,255,255,.7); font-size: .86rem; }
.capture-story { background: rgba(255,255,255,.9); }.capture-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }.capture-grid div { display: grid; gap: 8px; min-height: 130px; padding: 20px; border-radius: 20px; color: #fff; background: linear-gradient(145deg, #111318, #344054); box-shadow: 0 15px 35px rgba(17,19,24,.12); }.capture-grid div:nth-child(2) { background: linear-gradient(145deg, #0a84ff, #28c7fa); }.capture-grid div:nth-child(3) { background: linear-gradient(145deg, #30d158, #0a84ff); }.capture-grid div:nth-child(4) { background: linear-gradient(145deg, #ff9500, #ff2d55); }.capture-grid div:nth-child(5) { background: linear-gradient(145deg, #af52de, #ff2d55); }.capture-grid span { color: rgba(255,255,255,.72); font-size: .85rem; }
.community-story { background: linear-gradient(145deg, #eaf5ff, #fff); }.community-story h2 { max-width: 13ch; }.community-story p { max-width: 760px; font-size: 1.15rem; }
.download-story { text-align: center; background: #111318; color: #fff; }.download-story p { max-width: 620px; margin-right: auto; margin-left: auto; color: rgba(255,255,255,.72); }.download-story .button { margin-top: 12px; color: #111318; background: #fff; }.download-note { display: block; margin-top: 14px; color: rgba(255,255,255,.45); }
@media (max-width: 920px) { .group-photo-flow, .capture-grid { grid-template-columns: repeat(2, 1fr); }.layout-showcase { grid-template-columns: 1fr; }.layout-card { min-height: 170px; }.feature-story, .privacy-story, .ar-story, .qr-story { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .group-photo-flow, .capture-grid { grid-template-columns: 1fr; }.mode-tabs { display: grid; grid-template-columns: 1fr 1fr; }.mode-tab { font-size: .82rem; }.scene-person { left: 16%; }.paint-a { left: 35%; width: 160px; }.shield-labels { font-size: .58rem; }.example-pills span { font-size: .76rem; } }
@media (prefers-reduced-motion: reduce) { .scene-paint, .scan-line, .ar-brush { 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; } }

/* 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; } }
