/* Landing layout */
:root {
  --ink: #171717;
  --muted: #64748b;
  --line: #e2e8f0;
  --accent: #9cff00;
  --accent-dim: rgba(156, 255, 0, 0.12);
  --accent-glow: rgba(156, 255, 0, 0.35);
  --green: #3f6212;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --snap: cubic-bezier(0.34, 1.45, 0.64, 1);
}

body.landing {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: #f1f5f9;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

body.landing-pending { visibility: hidden; }

.landing-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #f1f5f9;
  visibility: visible;
}

.landing-gate-box {
  width: 100%;
  max-width: 320px;
  padding: 32px 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.landing-gate-logo {
  height: 32px;
  margin-bottom: 20px;
}

.landing-gate-box p {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.landing-gate-box input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
}

.landing-gate-box button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.landing-gate-err {
  margin: 12px 0 0 !important;
  font-size: 12px !important;
  color: #dc2626 !important;
  font-weight: 600 !important;
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(241, 245, 249, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.landing-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.landing-nav img { height: 28px; }

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--ink); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(156, 255, 0, 0.25);
  transition: transform 0.3s var(--snap), box-shadow 0.3s var(--ease);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(156, 255, 0, 0.35);
}

.hero {
  position: relative;
  padding: clamp(48px, 10vw, 96px) 20px clamp(40px, 6vw, 64px);
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
}
.hero-glow .glow-a {
  width: 420px; height: 420px;
  background: rgba(156, 255, 0, 0.2);
  top: -80px; left: 50%;
  transform: translateX(-50%);
}
.hero-glow .glow-b {
  width: 300px; height: 300px;
  background: rgba(226, 232, 240, 0.9);
  bottom: -60px; right: 10%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.hero-logo {
  height: clamp(36px, 6vw, 48px);
  margin-bottom: 24px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.hero .lead {
  margin: 0 auto 32px;
  max-width: 540px;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 500;
  color: var(--muted);
  line-height: 1.6;
}

.hero-cta-line {
  margin: 0 auto 24px;
  max-width: 480px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.btn-hero-secondary:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.features-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.feature-chip strong { color: var(--green); font-weight: 800; }

.demo-section {
  padding: 100px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(168deg, #ffffff 0%, #fafafa 55%, #f4f4f5 100%);
}

.demo-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
  padding: 0 8px;
}

.demo-section-header h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.demo-section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.compare-section { padding-top: 0; }

.landing-footer {
  padding: 32px 20px 48px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: #fff;
}

.landing-footer img { height: 24px; margin-bottom: 12px; opacity: 0.7; }
.landing-footer p { margin: 0 0 8px; font-size: 12px; color: var(--muted); font-weight: 500; }
.landing-footer-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.landing-footer a { color: var(--green); text-decoration: none; font-size: 12px; font-weight: 600; }
.landing-footer a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .landing-nav-actions .btn-ghost { display: none; }
  .demo-section .stage { height: min(520px, 62vh); }
}


/* Demo animation (animacja5) */

  :root {
    --ink: #171717;
    --muted: #64748b;
    --line: #e2e8f0;
    --accent: #9cff00;
    --accent-dim: rgba(156, 255, 0, 0.12);
    --card: #ffffff;
    --shadow: 0 24px 64px rgba(15, 23, 42, 0.07), 0 2px 8px rgba(15, 23, 42, 0.03);
    --shadow-sm: 0 10px 32px rgba(15, 23, 42, 0.06);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --snap: cubic-bezier(0.34, 1.45, 0.64, 1);
    --fade: 0.55s;
    --hold-gap: 0.35s;
  }

  *, *::before, *::after { box-sizing: border-box; }

  

  .demo-section .demo-wrapper {
    width: 1200px;
    max-width: calc(100vw - 24px);
    margin: 0 auto;
  }

  .stage {
    position: relative;
    height: 640px;
    overflow: hidden;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .stage-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.32;
  }

  .glow-a {
    width: 400px;
    height: 400px;
    background: rgba(156, 255, 0, 0.2);
    top: -100px;
    left: 40%;
    animation: driftA 18s ease-in-out infinite;
  }

  .glow-b {
    width: 340px;
    height: 340px;
    background: rgba(226, 232, 240, 0.85);
    bottom: -80px;
    right: -60px;
    animation: driftB 22s ease-in-out infinite;
  }

  @keyframes driftA {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 18px); }
  }

  @keyframes driftB {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-24px, -16px); }
  }

  /* ── Scenes ── */
  .world {
    position: absolute;
    inset: 0;
  }

  .scene {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--fade) var(--ease), visibility var(--fade);
    pointer-events: none;
  }

  .scene.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .scene-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 36px 40px 52px;
  }

  /* Shared typography */
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent-dim);
    border: 1px solid rgba(156, 255, 0, 0.35);
    color: #3f6212;
    margin-bottom: 12px;
  }

  .pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
  }

  .step-head {
    margin-bottom: 24px;
    max-width: 520px;
  }

  .step-head h4 {
    margin: 0 0 6px;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
  }

  .step-head p {
    margin: 0 auto;
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.5;
    max-width: 440px;
  }

  .step-head em {
    font-style: normal;
    color: #3f6212;
    font-weight: 700;
  }

  .card {
    background: var(--card);
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }

  /* Staggered reveal — triggered when scene becomes active */
  .reveal {
    opacity: 0;
    transform: translateY(14px);
  }

  .scene.is-active .reveal {
    animation: revealIn 0.55s var(--ease) forwards;
  }

  .scene.is-active .reveal[d="100"] { animation-delay: 0.1s; }
  .scene.is-active .reveal[d="200"] { animation-delay: 0.2s; }
  .scene.is-active .reveal[d="300"] { animation-delay: 0.3s; }
  .scene.is-active .reveal[d="400"] { animation-delay: 0.4s; }
  .scene.is-active .reveal[d="500"] { animation-delay: 0.5s; }
  .scene.is-active .reveal[d="600"] { animation-delay: 0.6s; }
  .scene.is-active .reveal[d="700"] { animation-delay: 0.7s; }
  .scene.is-active .reveal[d="800"] { animation-delay: 0.8s; }
  .scene.is-active .reveal[d="900"] { animation-delay: 0.9s; }
  .scene.is-active .reveal[d="1000"] { animation-delay: 1s; }
  .scene.is-active .reveal[d="1100"] { animation-delay: 1.1s; }
  .scene.is-active .reveal[d="1200"] { animation-delay: 1.2s; }
  .scene.is-active .reveal[d="1400"] { animation-delay: 1.4s; }
  .scene.is-active .reveal[d="1700"] { animation-delay: 1.7s; }

  @keyframes revealIn {
    to { opacity: 1; transform: translateY(0); }
  }

  .scene.is-active .reveal-pop {
    opacity: 0;
    transform: scale(0.88);
    animation: revealPop 0.45s var(--snap) forwards;
  }

  .scene.is-active .reveal-pop[d="400"] { animation-delay: 0.4s; }
  .scene.is-active .reveal-pop[d="500"] { animation-delay: 0.5s; }
  .scene.is-active .reveal-pop[d="600"] { animation-delay: 0.6s; }
  .scene.is-active .reveal-pop[d="700"] { animation-delay: 0.7s; }
  .scene.is-active .reveal-pop[d="800"] { animation-delay: 0.8s; }
  .scene.is-active .reveal-pop[d="900"] { animation-delay: 0.9s; }
  .scene.is-active .reveal-pop[d="1000"] { animation-delay: 1s; }
  .scene.is-active .reveal-pop[d="1100"] { animation-delay: 1.1s; }
  .scene.is-active .reveal-pop[d="1200"] { animation-delay: 1.2s; }
  .scene.is-active .reveal-pop[d="1400"] { animation-delay: 1.4s; }

  @keyframes revealPop {
    to { opacity: 1; transform: scale(1); }
  }

  /* Progress UX */
  .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 24px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(to top, rgba(255,255,255,0.92), transparent);
    z-index: 20;
  }

  .progress-track {
    flex: 1;
    height: 3px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 999px;
    transition: width 0.15s linear;
  }

  .progress-dots {
    display: flex;
    gap: 6px;
  }

  .progress-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
  }

  .progress-dots button.is-current {
    background: var(--accent);
    transform: scale(1.25);
  }

  .progress-dots button.is-done {
    background: #86efac;
  }

  .progress-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    min-width: 52px;
    text-align: right;
  }

  /* ═══ INTRO ═══ */
  .scene-intro .scene-inner {
    z-index: 2;
  }

  .intro-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 560px;
  }

  .intro-logo {
    height: 40px;
    margin-bottom: 20px;
    opacity: 0;
    transform: scale(2.4);
  }

  .scene-intro.is-active .intro-logo {
    animation: logoHero 0.9s var(--snap) 0.2s forwards;
  }

  @keyframes logoHero {
    to { opacity: 1; transform: scale(1); }
  }

  .intro-text-slot {
    position: relative;
    width: 100%;
    min-height: 150px;
  }

  .intro-opanuj {
    font-size: clamp(26px, 4.2vw, 38px);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    transform: translateY(16px);
  }

  .scene-intro.is-active .intro-opanuj {
    animation: opanujIn 0.5s var(--ease) 1.1s forwards,
               opanujOut 0.45s var(--ease) 4.2s forwards;
  }

  @keyframes opanujIn {
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes opanujOut {
    to { opacity: 0; transform: translateY(-10px); }
  }

  .intro-act2 {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
  }

  .scene-intro.is-active .intro-act2 {
    animation: act2In 0.6s var(--ease) 4.8s forwards;
  }

  @keyframes act2In {
    to { opacity: 1; }
  }

  .intro-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(10px);
  }

  .intro-kicker span { color: var(--ink); font-weight: 800; }

  .scene-intro.is-active .intro-kicker {
    animation: revealIn 0.5s var(--ease) 5s forwards;
  }

  .intro-headline {
    font-size: clamp(34px, 5.5vw, 52px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin: 0;
    max-width: 520px;
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }

  .intro-headline em {
    font-style: normal;
    color: var(--accent);
  }

  .scene-intro.is-active .intro-headline {
    animation: headlineIn 0.6s var(--ease) 5.3s forwards;
  }

  @keyframes headlineIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  .intro-foot {
    margin: 20px 0 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
  }

  .scene-intro.is-active .intro-foot {
    animation: revealIn 0.5s var(--ease) 5.7s forwards;
  }

  /* Chaos units */
  .intro-units {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
  }

  .intro-unit {
    position: absolute;
    left: 50%;
    top: 56%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.45s var(--ease), transform 0.7s var(--ease);
  }

  .scene-intro.is-active .intro-unit {
    opacity: 1;
    transform: var(--pos) scale(0.96);
  }

  .intro-unit.u1 { --pos: translate(calc(-50% - 310px), calc(-50% - 170px)); transition-delay: 2.2s; }
  .intro-unit.u2 { --pos: translate(calc(-50% + 300px), calc(-50% - 160px)); transition-delay: 2.35s; }
  .intro-unit.u3 { --pos: translate(calc(-50% - 330px), calc(-50% + 30px));  transition-delay: 2.5s; }
  .intro-unit.u4 { --pos: translate(calc(-50% + 320px), calc(-50% + 20px));  transition-delay: 2.65s; }
  .intro-unit.u5 { --pos: translate(calc(-50% - 290px), calc(-50% + 180px)); transition-delay: 2.8s; }
  .intro-unit.u6 { --pos: translate(calc(-50% + 290px), calc(-50% + 170px)); transition-delay: 2.95s; }

  .intro-ico {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff;
    color: #64748b;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  }

  .intro-ico.mail { background: #fff1f2; color: #e11d48; }
  .intro-ico.phone { background: #fef9c3; color: #ca8a04; }
  .intro-ico.video { background: #ede9fe; color: #7c3aed; }

  .intro-unit.u2 .intro-ico.phone {
    animation: phoneShake 0.55s ease-in-out infinite;
    animation-delay: 3s;
  }

  @keyframes phoneShake {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-2px, 1px) rotate(-3deg); }
    50% { transform: translate(2px, -1px) rotate(3deg); }
    75% { transform: translate(-1px, -1px) rotate(-2deg); }
  }

  .intro-ico svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .intro-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.6);
  }

  .scene-intro.is-active .intro-unit.u1 .intro-badge { animation: badgeIn 0.35s var(--snap) 3.1s forwards; }
  .scene-intro.is-active .intro-unit.u2 .intro-badge { animation: badgeIn 0.35s var(--snap) 3.25s forwards; }
  .scene-intro.is-active .intro-unit.u3 .intro-badge { animation: badgeIn 0.35s var(--snap) 3.4s forwards; }

  @keyframes badgeIn {
    to { opacity: 1; transform: scale(1); }
  }

  .intro-side {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 4px;
  }

  .intro-bubble {
    font-size: 10px;
    font-weight: 800;
    padding: 7px 13px;
    border-radius: 10px;
    white-space: nowrap;
    max-width: 168px;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transform: translateX(-8px) scale(0.9);
  }

  .scene-intro.is-active .intro-bubble { animation: bubbleIn 0.4s var(--snap) forwards; }
  .intro-bubble.bb1 { animation-delay: 3.2s !important; }
  .intro-bubble.bb2 { animation-delay: 3.35s !important; }
  .intro-bubble.bb3 { animation-delay: 3.5s !important; }
  .intro-bubble.bb4 { animation-delay: 3.65s !important; }
  .intro-bubble.bb5 { animation-delay: 3.8s !important; }
  .intro-bubble.bb6 { animation-delay: 3.95s !important; }
  .intro-bubble.bb7 { animation-delay: 3.3s !important; }
  .intro-bubble.bb8 { animation-delay: 3.55s !important; }

  @keyframes bubbleIn {
    to { opacity: 1; transform: translateX(0) scale(1); }
  }

  .intro-bubble.t-red    { background: #fecaca; }
  .intro-bubble.t-orange { background: #fed7aa; }
  .intro-bubble.t-violet { background: #ddd6fe; }
  .intro-bubble.t-yellow { background: #fef08a; }
  .intro-bubble.t-green  { background: var(--accent); }
  .intro-bubble.t-gray   { background: #e2e8f0; }

  /* ═══ UPLOAD ═══ */
  .upload-panel {
    width: min(620px, 92vw);
    padding: 18px;
    display: flex;
    gap: 14px;
  }

  .upload-side {
    width: 136px;
    background: #fafafa;
    border-radius: 14px;
    padding: 14px 10px;
    flex-shrink: 0;
    text-align: left;
  }

  .upload-side img { height: 16px; margin-bottom: 16px; display: block; }

  .upload-nav div {
    font-size: 10px;
    font-weight: 600;
    color: var(--muted);
    padding: 7px 8px;
    border-radius: 8px;
    margin-bottom: 3px;
  }

  .upload-nav div.on {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    border-left: 3px solid var(--accent);
  }

  .upload-main { flex: 1; text-align: left; }
  .upload-main h3 { margin: 0 0 12px; font-size: 13px; font-weight: 700; }

  .dropzone {
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    background: #fafafa;
    transition: border-color 0.4s, background 0.4s;
  }

  .scene-upload.is-active .dropzone {
    animation: dropPulse 2.5s ease 1.2s 2;
  }

  @keyframes dropPulse {
    50% { border-color: var(--accent); background: var(--accent-dim); }
  }

  .dropzone .ico { font-size: 26px; margin-bottom: 6px; }
  .dropzone p { margin: 0; font-size: 11px; font-weight: 600; color: var(--muted); }

  .chips-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .chip {
    font-size: 10px;
    font-weight: 800;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--ink);
    letter-spacing: 0.04em;
  }

  /* ═══ LINK ═══ */
  .duo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .phone-card {
    width: 200px;
    padding: 18px;
    text-align: left;
  }

  .phone-card .n-head { font-size: 10px; font-weight: 800; color: #3f6212; margin-bottom: 6px; }
  .phone-card .n-body { font-size: 12px; font-weight: 600; line-height: 1.35; }

  .link-card {
    width: 280px;
    padding: 22px;
    text-align: left;
  }

  .link-card label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3f6212;
  }

  .link-url {
    margin-top: 10px;
    padding: 13px 14px;
    background: #f8fafc;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--line);
  }

  .scene-link.is-active .link-url {
    animation: urlGlow 0.6s ease 1.4s forwards;
  }

  @keyframes urlGlow {
    to { box-shadow: 0 0 0 3px var(--accent-dim); }
  }

  .link-fly {
    margin-top: 14px;
    display: inline-block;
    background: var(--accent);
    color: var(--ink);
    font-size: 11px;
    font-weight: 900;
    padding: 10px 20px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(156, 255, 0, 0.3);
  }

  /* ═══ PINS ═══ */
  .shot-wrap { position: relative; }

  .shot-card {
    width: min(400px, 88vw);
    overflow: hidden;
  }

  .shot-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #fafafa;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
  }

  .shot-body {
    padding: 16px;
    min-height: 190px;
    position: relative;
    background: #fff;
  }

  .mock-hero {
    height: 68px;
    background: linear-gradient(120deg, #dbeafe, #ecfdf5);
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mock-btn { width: 68px; height: 22px; background: var(--ink); border-radius: 6px; }
  .mock-row { display: flex; gap: 6px; }
  .mock-row div { flex: 1; height: 26px; background: #f1f5f9; border-radius: 6px; }

  .pin {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    transform: scale(0);
  }

  .pin.p1 { background: #ef4444; top: 26%; left: 20%; }
  .pin.p2 { background: #f59e0b; top: 50%; left: 46%; }
  .pin.p3 { background: #10b981; top: 22%; left: 66%; }

  .scene-pins.is-active .pin.p1 { animation: pinPop 0.4s var(--snap) 0.9s forwards; }
  .scene-pins.is-active .pin.p2 { animation: pinPop 0.4s var(--snap) 1.15s forwards; }
  .scene-pins.is-active .pin.p3 { animation: pinPop 0.4s var(--snap) 1.4s forwards; }

  @keyframes pinPop {
    0% { opacity: 0; transform: scale(0); }
    60% { opacity: 1; transform: scale(1.15); }
    100% { opacity: 1; transform: scale(1); }
  }

  .quote {
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    font-style: italic;
  }

  /* ═══ TASKS ═══ */
  .tasks-wrap { position: relative; }

  .badge-alert {
    position: absolute;
    top: -14px;
    right: -14px;
    background: #fef3c7;
    color: #92400e;
    font-size: 11px;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid #fde68a;
    z-index: 2;
  }

  .task-card {
    width: min(340px, 88vw);
    padding: 20px 22px;
    text-align: left;
  }

  .task-card h4 { margin: 0 0 12px; font-size: 13px; font-weight: 800; }

  .task-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 12px;
    font-weight: 600;
  }

  .task-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
  .task-dot.r { background: #ef4444; }
  .task-dot.y { background: #f59e0b; }
  .task-dot.g { background: #10b981; }

  /* ═══ FIX ═══ */
  .fix-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .fix-card {
    width: 140px;
    padding: 20px 14px;
    text-align: center;
    transition: border-color 0.4s, box-shadow 0.4s;
  }

  .fix-card .ico { font-size: 22px; margin-bottom: 8px; }
  .fix-card .t { font-size: 12px; font-weight: 800; }
  .fix-card .d { font-size: 10px; color: var(--muted); margin-top: 5px; line-height: 1.35; font-weight: 500; }

  .fix-card.hot {
    border-color: rgba(156, 255, 0, 0.5);
    box-shadow: 0 0 0 3px var(--accent-dim), var(--shadow-sm);
  }

  .scene-fix.is-active .fix-card.hot {
    animation: hotPulse 1.2s ease 1.6s 2;
  }

  @keyframes hotPulse {
    50% { border-color: var(--accent); }
  }

  .reply-pill {
    margin-top: 16px;
    display: inline-block;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid #86efac;
    border-radius: 14px;
    background: #fff;
  }

  .reply-pill em { font-style: normal; color: #059669; font-weight: 800; }

  /* ═══ SYNC ═══ */
  .sync-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .sync-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .push-card {
    width: 210px;
    padding: 16px;
    text-align: left;
  }

  .push-card .n-head { font-size: 10px; font-weight: 800; color: #3f6212; margin-bottom: 5px; }
  .push-card .n-body { font-size: 12px; font-weight: 600; line-height: 1.35; }

  .sync-shot {
    width: min(360px, 80vw);
    overflow: hidden;
    position: relative;
  }

  .v2-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: var(--ink);
    font-size: 10px;
    font-weight: 900;
    padding: 5px 11px;
    border-radius: 999px;
  }

  .notify-btn {
    background: var(--ink);
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);
    cursor: default;
  }

  /* ═══ PROOF ═══ */
  .proof-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .stats-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .stat-card {
    width: 180px;
    padding: 22px 18px;
  }

  .stat-card .num {
    font-size: 44px;
    font-weight: 900;
    color: #3f6212;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .stat-card .lbl {
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.4;
  }

  .compare-card {
    width: min(380px, 92vw);
    padding: 18px 20px;
  }

  .compare-card table { width: 100%; border-collapse: collapse; font-size: 11px; }
  .compare-card th { text-align: center; padding: 8px 6px; font-weight: 800; color: #3f6212; border-bottom: 1px solid var(--line); }
  .compare-card td { padding: 8px 6px; border-bottom: 1px solid #f1f5f9; font-weight: 600; color: var(--muted); text-align: center; }
  .compare-card td:last-child { color: var(--ink); font-weight: 700; }
  .compare-card td:first-child { text-align: left; color: var(--ink); }

  .cta-block { text-align: center; }
  .cta-block img { height: 28px; margin-bottom: 10px; }
  .cta-block p { margin: 0 0 6px; font-size: 14px; font-weight: 600; color: var(--muted); }
  .cta-block a { font-size: 12px; font-weight: 700; color: #3f6212; text-decoration: none; }

  /* Cursor */
  .cursor {
    position: absolute;
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s, top 0.6s var(--ease), left 0.6s var(--ease);
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.1));
  }

  .cursor.is-visible { opacity: 1; }
  .cursor svg { width: 18px; height: 18px; fill: var(--ink); }

  .cursor-tag {
    display: inline-block;
    margin-left: 3px;
    font-size: 9px;
    font-weight: 800;
    color: #fff;
    background: var(--ink);
    padding: 2px 8px;
    border-radius: 999px;
    vertical-align: top;
  }

  .cursor-k svg { fill: #6366f1; }
  .cursor-k .cursor-tag { background: #6366f1; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }


/* Comparison table (tabela) */

  :root {
    --ink: #171717;
    --muted: #64748b;
    --line: #e2e8f0;
    --line-strong: #e2e8f0;
    --accent: #9cff00;
    --accent-dim: rgba(156, 255, 0, 0.12);
    --accent-glow: rgba(156, 255, 0, 0.35);
    --bg: #f1f5f9;
    --surface: #ffffff;
    --surface-2: #fafafa;
    --card: #ffffff;
    --bad: rgba(239, 68, 68, 0.08);
    --bad-text: #dc2626;
    --good-text: #171717;
    --green: #3f6212;
    --shadow: 0 24px 64px rgba(15, 23, 42, 0.07), 0 2px 8px rgba(15, 23, 42, 0.03);
    --shadow-sm: 0 10px 32px rgba(15, 23, 42, 0.06);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --snap: cubic-bezier(0.34, 1.45, 0.64, 1);
    --radius: 20px;
    --radius-lg: 24px;
  }

  *, *::before, *::after { box-sizing: border-box; }

  

  .section {
    position: relative;
    padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 32px);
    overflow: hidden;
  }

  .section-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.28;
  }

  .glow-a {
    width: 480px;
    height: 480px;
    background: rgba(156, 255, 0, 0.18);
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
  }

  .glow-b {
    width: 360px;
    height: 360px;
    background: rgba(226, 232, 240, 0.85);
    bottom: -80px;
    right: -40px;
  }

  .container {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
  }

  /* ── Header ── */
  .header {
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 48px);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent-dim);
    border: 1px solid rgba(156, 255, 0, 0.35);
    color: var(--green);
    margin-bottom: 16px;
  }

  .pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
  }

  .header h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 4.5vw, 40px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
  }

  .header h2 em {
    font-style: normal;
    color: var(--accent);
  }

  .header p {
    margin: 0;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
    color: var(--muted);
    max-width: 520px;
    margin-inline: auto;
  }

  /* ── Comparison table ── */
  .compare-wrap {
    background: var(--surface);
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .compare-grid {
    display: grid;
    grid-template-columns: minmax(140px, 1.1fr) 1fr 1fr;
  }

  .compare-head {
    display: contents;
  }

  .compare-head > div {
    padding: 18px 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line-strong);
    background: var(--surface-2);
  }

  .compare-head .col-aspect {
    color: var(--muted);
  }

  .compare-head .col-old {
    text-align: center;
    color: var(--bad-text);
    border-left: 1px solid var(--line);
  }

  .compare-head .col-new {
    text-align: center;
    color: var(--green);
    border-left: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(156, 255, 0, 0.08) 0%, var(--surface-2) 100%);
    box-shadow: inset 0 1px 0 rgba(156, 255, 0, 0.2);
  }

  .compare-row {
    display: contents;
  }

  .compare-row > div {
    padding: 20px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
  }

  .compare-row:last-of-type > div {
    border-bottom: none;
  }

  .row-aspect {
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .row-aspect .ico {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--accent-dim);
    border: 1px solid rgba(156, 255, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
  }

  .row-aspect .ico svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .row-old {
    color: var(--muted);
    border-left: 1px solid var(--line);
    background: rgba(254, 242, 242, 0.5);
    position: relative;
  }

  .row-old::before {
    content: "✕";
    display: inline-block;
    margin-right: 8px;
    color: #f87171;
    font-size: 11px;
    font-weight: 800;
    vertical-align: middle;
  }

  .row-new {
    color: var(--good-text);
    font-weight: 700;
    border-left: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(156, 255, 0, 0.06) 0%, rgba(156, 255, 0, 0.12) 100%);
    box-shadow: inset 3px 0 0 var(--accent);
    position: relative;
  }

  .row-new::before {
    content: "✓";
    display: inline-block;
    margin-right: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    vertical-align: middle;
  }

  .compare-row.highlight-final .row-new {
    font-weight: 800;
    color: var(--green);
    background: linear-gradient(90deg, rgba(156, 255, 0, 0.1) 0%, rgba(156, 255, 0, 0.18) 100%);
  }

  /* Mobile labels (hidden on desktop) */
  .mobile-label {
    display: none;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .mobile-label.old { color: var(--bad-text); }
  .mobile-label.new { color: var(--green); }

  /* ── Stats strip ── */
  .stats-strip {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 3vw, 24px);
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .stat-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    background: var(--card);
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
  }

  .stat-chip strong {
    font-size: 22px;
    font-weight: 900;
    color: var(--green);
    letter-spacing: -0.03em;
    line-height: 1;
  }

  /* ── CTA ── */
  .cta {
    margin-top: clamp(40px, 6vw, 56px);
    text-align: center;
    padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 40px);
    border-radius: var(--radius-lg);
    background: linear-gradient(168deg, #ffffff 0%, #fafafa 55%, #f4f4f5 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
  }

  .cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(156, 255, 0, 0.1), transparent 70%);
    pointer-events: none;
  }

  .cta-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
  }

  .cta img {
    height: 32px;
    margin-bottom: 20px;
  }

  .cta h3 {
    margin: 0 0 10px;
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
  }

  .cta .sub {
    margin: 0 0 28px;
    font-size: clamp(14px, 2vw, 15px);
    font-weight: 500;
    color: var(--muted);
    line-height: 1.6;
  }

  .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border: none;
    border-radius: 999px;
    background: var(--accent);
    color: #171717;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(156, 255, 0, 0.25);
    transition:
      transform 0.35s var(--snap),
      box-shadow 0.35s var(--ease),
      background 0.25s var(--ease);
  }

  .btn-cta svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.35s var(--snap);
  }

  .btn-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
      0 16px 48px rgba(156, 255, 0, 0.4),
      0 0 0 4px var(--accent-dim);
    background: #b4ff33;
  }

  .btn-cta:hover svg {
    transform: translateX(4px);
  }

  .btn-cta:active {
    transform: translateY(-1px) scale(1.01);
  }

  .cta-note {
    margin: 16px 0 0;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.02em;
  }

  /* ── Responsive ── */
  @media (max-width: 720px) {
    .compare-grid {
      display: block;
    }

    .compare-head {
      display: none;
    }

    .compare-row {
      display: block;
      border-bottom: 1px solid var(--line-strong);
    }

    .compare-row:last-of-type {
      border-bottom: none;
    }

    .compare-row > div {
      border-bottom: none;
      border-left: none !important;
      box-shadow: none !important;
      padding: 14px 18px;
    }

    .compare-row > .row-aspect {
      padding: 18px 18px 10px;
      background: var(--surface-2);
      border-bottom: 1px solid var(--line);
    }

    .compare-row > .row-old,
    .compare-row > .row-new {
      padding-top: 10px;
    }

    .compare-row > .row-old {
      background: rgba(254, 242, 242, 0.6);
    }

    .compare-row > .row-new {
      background: rgba(156, 255, 0, 0.08);
      padding-bottom: 18px;
      border-bottom: 1px solid var(--line);
    }

    .compare-row:last-of-type > .row-new {
      border-bottom: none;
    }

    .mobile-label {
      display: block;
    }

    .row-old::before,
    .row-new::before {
      display: none;
    }

    .stats-strip {
      flex-direction: column;
      align-items: stretch;
    }

    .stat-chip {
      justify-content: center;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .btn-cta,
    .btn-cta svg {
      transition-duration: 0.01ms !important;
    }
  }
