/* ============================================================
   POSTIVA Landing Page — style.css
   Aesthetic: "Luminous Clarity" — Light editorial minimalism
   Fonts: Schibsted Grotesk (headings) + Satoshi (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600&display=swap');

/* ---- Color Tokens — Light mode (from config.ts) ---- */
:root {
  /* Primary (violet) */
  --color-primary-0: #F9F7FF;
  --color-primary-50: #ECE9FF;
  --color-primary-100: #E0DDFF;
  --color-primary-200: #C7C0FF;
  --color-primary-300: #A79EFF;
  --color-primary-400: #887CF3;
  --color-primary-500: #614BDB;
  --color-primary-600: #4D2C9F;
  --color-primary-700: #2D1B6E;
  --color-primary-800: #231252;
  --color-primary-900: #1F0F4B;
  --color-primary-950: #140B33;

  /* Tertiary / Mint (SafeZone accent) */
  --color-tertiary-400: #1EFCC0;
  --color-tertiary-500: #0BF3BD;
  --color-tertiary-600: #0CCAA0;
  --color-tertiary-700: #0BA384;

  /* Typography — light mode (dark text on white) */
  --color-typography-0: #171717;
  --color-typography-100: #262627;
  --color-typography-300: #404040;
  --color-typography-400: #525252;
  --color-typography-500: #737373;
  --color-typography-600: #8C8C8C;
  --color-typography-900: #E5E5E5;
  --color-typography-950: #FEFEFF;

  /* Background — light mode from config.ts */
  --color-bg-deep: #FFFFFF;
  --color-bg-dark: #F6F8FC;
  --color-bg-mid: #EFF1F5;
  --color-bg-card: #FFFFFF;
  --color-bg-glass: rgba(255, 255, 255, 0.75);

  /* Semantic */
  --color-accent-primary: var(--color-primary-500);
  --color-accent-mint: var(--color-tertiary-600);
  --color-text-primary: var(--color-typography-0);
  --color-text-secondary: var(--color-typography-300);
  --color-text-muted: var(--color-typography-500);
  --color-border: rgba(97, 75, 219, 0.12);
  --color-border-mint: rgba(12, 202, 160, 0.25);

  /* Typography */
  --font-display: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-body: 'Satoshi', system-ui, sans-serif;

  /* Spacing */
  --section-padding: clamp(80px, 10vw, 140px);
  --container-max: 1200px;
  --container-wide: 1400px;
  --gap-lg: clamp(40px, 6vw, 80px);
  --gap-md: clamp(24px, 4vw, 48px);
  --gap-sm: clamp(16px, 2vw, 24px);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.45, 0, 0.55, 1);
  --duration-fast: 200ms;
  --duration-med: 400ms;
  --duration-slow: 700ms;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-dark);
  overflow-x: hidden;
}

/* ---- Grain Overlay ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

/* ---- Scroll animation base ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 100ms;
}

[data-reveal-delay="2"] {
  transition-delay: 200ms;
}

[data-reveal-delay="3"] {
  transition-delay: 320ms;
}

[data-reveal-delay="4"] {
  transition-delay: 460ms;
}

[data-reveal-delay="5"] {
  transition-delay: 600ms;
}

/* ---- Lucide Icons Global ---- */
.lucide {
  width: 20px;
  height: 20px;
  stroke-width: 2px;
  vertical-align: middle;
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.container--wide {
  max-width: var(--container-wide);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: background var(--duration-med) var(--ease-inout),
    padding var(--duration-med) var(--ease-inout),
    box-shadow var(--duration-med) var(--ease-inout);
}

.nav.is-scrolled {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(97, 75, 219, 0.1), 0 4px 24px rgba(0, 0, 0, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 32px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-typography-400);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-primary-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-med) var(--ease-out);
}

.nav__link:hover {
  color: var(--color-text-primary);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 24px;
  background: var(--color-primary-500);
  color: #FFFFFF;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease,
    transform var(--duration-fast) ease;
}

.nav__cta:hover {
  background: var(--color-primary-600);
  box-shadow: 0 0 28px rgba(97, 75, 219, 0.35);
  transform: translateY(-1px);
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--color-text-primary);
}

.nav__mobile-toggle .lucide {
  width: 24px;
  height: 24px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

/* Gradient mesh background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero__bg-orb--1 {
  width: 60vw;
  height: 60vw;
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(97, 75, 219, 0.12) 0%, transparent 70%);
  animation: float-orb 18s ease-in-out infinite;
}

.hero__bg-orb--2 {
  width: 40vw;
  height: 40vw;
  top: 30%;
  right: -5%;
  background: radial-gradient(circle, rgba(12, 202, 160, 0.10) 0%, transparent 70%);
  animation: float-orb 14s ease-in-out infinite reverse;
}

.hero__bg-orb--3 {
  width: 30vw;
  height: 30vw;
  bottom: -10%;
  left: 30%;
  background: radial-gradient(circle, rgba(136, 124, 243, 0.10) 0%, transparent 70%);
  animation: float-orb 22s ease-in-out infinite;
}

@keyframes float-orb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(3%, 4%) scale(1.05);
  }

  66% {
    transform: translate(-2%, 2%) scale(0.95);
  }
}

/* Grid lines decoration */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(97, 75, 219, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 75, 219, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 80%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--section-padding) 0 clamp(60px, 8vw, 100px);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__text-col {
  max-width: 600px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-mint);
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid var(--color-border-mint);
  border-radius: 100px;
  background: rgba(30, 252, 192, 0.06);
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent-mint);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 28px;
}

.hero__title em {
  font-style: italic;
  color: transparent;
  background: linear-gradient(135deg, var(--color-primary-300) 0%, var(--color-primary-400) 50%, var(--color-tertiary-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.hero__benefit {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-mint);
  flex-shrink: 0;
}

.hero__benefit-icon .lucide {
  width: 16px;
  height: 16px;
}

/* Hero visual col */
.hero__visual-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
}

.hero__mockup-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(97, 75, 219, 0.18),
    0 40px 80px rgba(97, 75, 219, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.8s var(--ease-out), box-shadow 0.8s var(--ease-out);
}

.hero__mockup-frame:hover {
  transform: perspective(1400px) rotateY(-1deg) rotateX(0.5deg) translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(97, 75, 219, 0.28),
    0 60px 100px rgba(97, 75, 219, 0.18),
    0 12px 48px rgba(0, 0, 0, 0.12);
}

.hero__mockup-img,
.hero__mockup-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero__mockup-glow {
  position: absolute;
  bottom: -30px;
  left: 10%;
  right: 10%;
  height: 60px;
  background: var(--color-primary-500);
  filter: blur(40px);
  opacity: 0.4;
  border-radius: 50%;
}

/* Floating badge */
.hero__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(97, 75, 219, 0.15);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-badge 6s ease-in-out infinite;
  box-shadow: 0 16px 40px rgba(97, 75, 219, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.hero__badge-2 {
  bottom: auto;
  top: 20px;
  left: auto;
  right: -16px;
  animation-delay: -3s;
  border-color: rgba(12, 202, 160, 0.25);
}

@keyframes float-badge {

  0%,
  100% {
    transform: translateY(0);
  }

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

.hero__badge-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-primary-700), var(--color-primary-500));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: #fff;
}

.hero__badge-icon .lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2.5px;
}

.hero__badge-icon--mint {
  background: linear-gradient(135deg, var(--color-tertiary-700), var(--color-tertiary-500));
}

.hero__badge-text {
  display: flex;
  flex-direction: column;
}

.hero__badge-label {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__badge-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--duration-med) var(--ease-out);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-600));
  color: #fff;
  box-shadow: 0 4px 20px rgba(97, 75, 219, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-primary-400), var(--color-primary-500));
  box-shadow: 0 8px 40px rgba(97, 75, 219, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid rgba(97, 75, 219, 0.2);
  padding: 13px 29px;
}

.btn--ghost:hover {
  background: rgba(97, 75, 219, 0.06);
  border-color: rgba(97, 75, 219, 0.40);
  color: var(--color-text-primary);
  transform: translateY(-2px);
}

.btn--mint {
  background: linear-gradient(135deg, var(--color-tertiary-600), var(--color-tertiary-700));
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(12, 202, 160, 0.30);
}

.btn--mint:hover {
  box-shadow: 0 8px 40px rgba(12, 202, 160, 0.50);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform var(--duration-fast) ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn .lucide {
  width: 18px;
  height: 18px;
}

/* ============================================================
   SECTION GENERIC
   ============================================================ */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--alt {
  background: var(--color-bg-deep);
}

.section--glass {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-mid) 100%);
}


.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--gap-lg);
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  margin-bottom: 16px;
}

.section__eyebrow--mint {
  color: var(--color-accent-mint);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 18px;
}

.section__title em {
  font-style: italic;
  color: transparent;
  background: linear-gradient(135deg, var(--color-primary-300), var(--color-primary-400));
  -webkit-background-clip: text;
  background-clip: text;
}

.section__title em.mint {
  background: linear-gradient(135deg, var(--color-tertiary-400), var(--color-tertiary-600));
  -webkit-background-clip: text;
  background-clip: text;
}

.section__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* ============================================================
   SAFEZONE AI SECTION
   ============================================================ */
.safezone {
  background: var(--color-bg-mid);
  position: relative;
  overflow: hidden;
}

.safezone::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(12, 202, 160, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.safezone__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.safezone__visual {
  position: relative;
  display: flex;
  justify-content: center;
  order: -1;
}

/* Shield visual */
.safezone__shield-wrap {
  position: relative;
  width: 340px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.safezone__shield-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(12, 202, 160, 0.12) 0%, transparent 70%);
  animation: shield-pulse 4s ease-in-out infinite;
}

@keyframes shield-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

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

.safezone__shield-svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 30px rgba(12, 202, 160, 0.30));
}

/* Floating comment cards */
.safezone__feed {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.safezone-card {
  background: var(--color-bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(97, 75, 219, 0.12);
  /* base neutral */
  border-radius: 12px;
  padding: 12px 16px;
  width: 200px;
  box-shadow: 0 8px 32px rgba(97, 75, 219, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.safezone__scanner {
  position: absolute;
  top: 0;
  left: -25px;
  right: -25px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(30, 252, 192, 0.25));
  border-bottom: 2px solid var(--color-accent-mint);
  box-shadow: 0 5px 20px rgba(30, 252, 192, 0.4);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  animation: safezone-radar 10s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes safezone-radar {

  0%,
  5% {
    transform: translateY(-50px);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translateY(300px);
    opacity: 1;
  }

  55%,
  100% {
    transform: translateY(320px);
    opacity: 0;
  }
}

/* Neutral state mapped via Keyframes */
.safezone-card--blocked,
.safezone-card--safe {
  position: relative;
  overflow: hidden;
}

.safezone-card--blocked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg,
      transparent,
      transparent 4px,
      rgba(233, 75, 100, 0.04) 4px,
      rgba(233, 75, 100, 0.04) 8px);
  opacity: 0;
}

.safezone-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  margin-bottom: 6px;
}

.safezone-card__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-400));
  flex-shrink: 0;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.safezone-card__name {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.safezone-card__status {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.5);
  white-space: nowrap;
  /* nigdy nie łami napisu "Zablokowany" */
  flex-shrink: 0;
  /* nie kurczy się poniżej swojej szerokości */
}

.safezone-card__status--blocked {
  color: #E94B64;
}

.safezone-card__status--safe {
  color: var(--color-accent-mint);
}

.safezone-card__text {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.safezone-text-inner {
  display: inline-block;
}

/* --------------- CARD 1 ANIMATIONS (Hater) --------------- */
.safezone-card--blocked:nth-child(2) {
  animation: sz-block-1 10s infinite;
}

.safezone-card--blocked:nth-child(2) .safezone-card__status {
  animation: sz-badge-1 10s infinite;
}

.safezone-card--blocked:nth-child(2) .safezone-text-inner {
  animation: sz-blur-1 10s infinite;
}

.safezone-card--blocked:nth-child(2)::after {
  animation: sz-stripes-1 10s infinite;
}

@keyframes sz-block-1 {

  0%,
  12% {
    border-color: rgba(97, 75, 219, 0.12);
    background: rgba(97, 75, 219, 0.03);
    transform: translateX(0);
    box-shadow: 0 8px 32px rgba(97, 75, 219, 0.08);
  }

  14%,
  18% {
    transform: translateX(5px);
    border-color: rgba(233, 75, 100, 0.8);
    background: rgba(233, 75, 100, 0.1);
    box-shadow: 0 0 25px rgba(233, 75, 100, 0.4);
  }

  20%,
  88% {
    transform: translateX(0);
    border-color: rgba(233, 75, 100, 0.4);
    background: rgba(233, 75, 100, 0.08);
    box-shadow: 0 0 15px rgba(233, 75, 100, 0.15);
  }

  90%,
  100% {
    border-color: rgba(97, 75, 219, 0.12);
    background: rgba(97, 75, 219, 0.03);
    transform: translateX(0);
    box-shadow: 0 8px 32px rgba(97, 75, 219, 0.08);
  }
}

@keyframes sz-badge-1 {

  0%,
  13% {
    opacity: 0;
    transform: scale(0.5);
  }

  16%,
  88% {
    opacity: 1;
    transform: scale(1);
  }

  90%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

@keyframes sz-blur-1 {

  0%,
  13% {
    opacity: 1;
    filter: blur(0px);
    color: var(--color-text-muted);
  }

  16%,
  88% {
    opacity: 0.6;
    filter: blur(2px);
    color: #E94B64;
    text-decoration: line-through;
  }

  90%,
  100% {
    opacity: 1;
    filter: blur(0px);
    color: var(--color-text-muted);
  }
}

@keyframes sz-stripes-1 {

  0%,
  13% {
    opacity: 0;
  }

  16%,
  88% {
    opacity: 1;
  }

  90%,
  100% {
    opacity: 0;
  }
}

/* --------------- CARD 2 ANIMATIONS (Safe) --------------- */
.safezone-card--safe:nth-child(3) {
  animation: sz-safe-2 10s infinite;
}

.safezone-card--safe:nth-child(3) .safezone-card__status {
  animation: sz-badge-2 10s infinite;
}

@keyframes sz-safe-2 {

  0%,
  28% {
    border-color: rgba(97, 75, 219, 0.12);
    background: rgba(97, 75, 219, 0.03);
    box-shadow: 0 8px 32px rgba(97, 75, 219, 0.08);
    transform: translateY(0);
  }

  30%,
  88% {
    border-color: rgba(12, 202, 160, 0.6);
    background: rgba(12, 202, 160, 0.1);
    box-shadow: 0 0 25px rgba(12, 202, 160, 0.25);
    transform: translateY(-2px);
  }

  90%,
  100% {
    border-color: rgba(97, 75, 219, 0.12);
    background: rgba(97, 75, 219, 0.03);
    box-shadow: 0 8px 32px rgba(97, 75, 219, 0.08);
    transform: translateY(0);
  }
}

@keyframes sz-badge-2 {

  0%,
  29% {
    opacity: 0;
    transform: scale(0.5);
  }

  32%,
  88% {
    opacity: 1;
    transform: scale(1);
  }

  90%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

/* --------------- CARD 3 ANIMATIONS (Spambot) --------------- */
.safezone-card--blocked:nth-child(4) {
  animation: sz-block-3 10s infinite;
}

.safezone-card--blocked:nth-child(4) .safezone-card__status {
  animation: sz-badge-3 10s infinite;
}

.safezone-card--blocked:nth-child(4) .safezone-text-inner {
  animation: sz-blur-3 10s infinite;
}

.safezone-card--blocked:nth-child(4)::after {
  animation: sz-stripes-3 10s infinite;
}

@keyframes sz-block-3 {

  0%,
  46% {
    border-color: rgba(97, 75, 219, 0.12);
    background: rgba(97, 75, 219, 0.03);
    transform: translateX(0);
    box-shadow: 0 8px 32px rgba(97, 75, 219, 0.08);
  }

  48%,
  52% {
    transform: translateX(5px);
    border-color: rgba(233, 75, 100, 0.8);
    background: rgba(233, 75, 100, 0.1);
    box-shadow: 0 0 25px rgba(233, 75, 100, 0.4);
  }

  54%,
  88% {
    transform: translateX(0);
    border-color: rgba(233, 75, 100, 0.4);
    background: rgba(233, 75, 100, 0.08);
    box-shadow: 0 0 15px rgba(233, 75, 100, 0.15);
  }

  90%,
  100% {
    border-color: rgba(97, 75, 219, 0.12);
    background: rgba(97, 75, 219, 0.03);
    transform: translateX(0);
    box-shadow: 0 8px 32px rgba(97, 75, 219, 0.08);
  }
}

@keyframes sz-badge-3 {

  0%,
  47% {
    opacity: 0;
    transform: scale(0.5);
  }

  50%,
  88% {
    opacity: 1;
    transform: scale(1);
  }

  90%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

@keyframes sz-blur-3 {

  0%,
  47% {
    opacity: 1;
    filter: blur(0px);
    color: var(--color-text-muted);
  }

  50%,
  88% {
    opacity: 0.6;
    filter: blur(2px);
    color: #E94B64;
    text-decoration: line-through;
  }

  90%,
  100% {
    opacity: 1;
    filter: blur(0px);
    color: var(--color-text-muted);
  }
}

@keyframes sz-stripes-3 {

  0%,
  47% {
    opacity: 0;
  }

  50%,
  88% {
    opacity: 1;
  }

  90%,
  100% {
    opacity: 0;
  }
}

/* SafeZone feature list */

.safezone__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent-mint);
  margin-bottom: 32px;
  line-height: 1.4;
}

.safezone__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.safezone__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.safezone__feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(12, 202, 160, 0.08);
  border: 1px solid rgba(12, 202, 160, 0.22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--color-accent-mint);
  flex-shrink: 0;
  transition: background var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease;
}

.safezone__feature-icon .lucide {
  width: 22px;
  height: 22px;
}

.safezone__feature:hover .safezone__feature-icon {
  background: rgba(12, 202, 160, 0.15);
  box-shadow: 0 0 20px rgba(12, 202, 160, 0.20);
}


.safezone__feature-title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.safezone__feature-desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   FOR WHO — Target Audience
   ============================================================ */
.audience {
  background: var(--color-bg-dark);
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(97, 75, 219, 0.10);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--duration-med) ease,
    box-shadow var(--duration-med) ease,
    transform var(--duration-med) var(--ease-out);
  cursor: default;
  box-shadow: 0 2px 12px rgba(97, 75, 219, 0.06);
}

.audience-card:hover {
  border-color: rgba(97, 75, 219, 0.28);
  box-shadow: 0 20px 60px rgba(97, 75, 219, 0.10), 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-6px);
}

.audience-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-primary-800), var(--color-primary-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(97, 75, 219, 0.3);
  color: #fff;
}

.audience-card__icon-wrap .lucide {
  width: 24px;
  height: 24px;
  stroke-width: 2px;
}

.audience-card__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-400);
  margin-bottom: 6px;
}

.audience-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.audience-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.audience-card__benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-secondary);
}

.audience-card__benefit::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--color-accent-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: #0A0614;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%230A0614' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  background: var(--color-bg-deep);
  position: relative;
  overflow: hidden;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 22px);
  right: calc(16.66% + 22px);
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary-500) 0%, var(--color-primary-400) 50%, var(--color-primary-500) 100%);
  opacity: 0.3;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(16px, 3vw, 40px);
  position: relative;
}

.how-step__number-wrap {
  position: relative;
  margin-bottom: 32px;
}

.how-step__number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 1px solid rgba(97, 75, 219, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(97, 75, 219, 0.08);
  transition: border-color var(--duration-med) ease, box-shadow var(--duration-med) ease;
}

.how-step:hover .how-step__number {
  border-color: rgba(97, 75, 219, 0.40);
  box-shadow: 0 0 32px rgba(97, 75, 219, 0.18);
}

.how-step__num-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary-400);
  line-height: 1;
}

.how-step__icon {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-400));
  color: #FFFFFF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  box-shadow: 0 4px 16px rgba(97, 75, 219, 0.4);
  z-index: 2;
}

.how-step__icon .lucide {
  width: 16px;
  height: 16px;
}

.how-step__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.how-step__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ============================================================
   BEFORE / AFTER COMPARISON
   ============================================================ */
.compare {
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.compare::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 50%, rgba(233, 75, 100, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(12, 202, 160, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.compare__grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: stretch;
}

.compare__col {
  border-radius: 24px;
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.compare__col--before {
  background: rgba(233, 75, 100, 0.05);
  border: 1px solid rgba(233, 75, 100, 0.15);
}

.compare__col--after {
  background: rgba(11, 243, 189, 0.04);
  border: 1px solid rgba(11, 243, 189, 0.15);
}

.compare__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.compare__divider-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(180deg, transparent, var(--color-border), transparent);
}

.compare__divider-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 1px solid rgba(97, 75, 219, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  box-shadow: 0 2px 8px rgba(97, 75, 219, 0.08);
}

.compare__col-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.compare__col--before .compare__col-label {
  color: #E94B64;
}

.compare__col--after .compare__col-label {
  color: var(--color-accent-mint);
}

.compare__col-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.compare__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-secondary);
}

.compare__item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.compare__col--before .compare__item-dot {
  background: rgba(233, 75, 100, 0.7);
}

.compare__col--after .compare__item-dot {
  background: var(--color-accent-mint);
}

/* ============================================================
   SCREENSHOTS MARQUEE
   ============================================================ */
.showcase {
  background: var(--color-bg-mid);
  overflow: hidden;
  padding: clamp(60px, 8vw, 100px) 0;
}

.showcase__label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.showcase__track {
  display: flex;
  gap: 20px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.showcase__track:hover {
  animation-play-state: paused;
}

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

  to {
    transform: translateX(-50%);
  }
}

.showcase__img-wrap {
  flex-shrink: 0;
  width: 440px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(97, 75, 219, 0.15);
  box-shadow: 0 8px 32px rgba(97, 75, 219, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform var(--duration-med) var(--ease-out), box-shadow var(--duration-med) ease;
  position: relative;
  cursor: zoom-in;
}

.showcase__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 20, 0.3);
  opacity: 0;
  transition: opacity var(--duration-fast) ease;
  pointer-events: none;
}

.showcase__zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 52px;
  height: 52px;
  background: var(--color-bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-400);
  opacity: 0;
  transition: opacity var(--duration-fast) ease, transform var(--duration-fast) var(--ease-out);
  z-index: 2;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.showcase__zoom-icon .lucide {
  width: 24px;
  height: 24px;
}

.showcase__img-wrap:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(97, 75, 219, 0.14), 0 4px 16px rgba(0, 0, 0, 0.08);
}

.showcase__img-wrap:hover::after {
  opacity: 1;
}

.showcase__img-wrap:hover .showcase__zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.showcase__img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.showcase__img-wrap:hover .showcase__img {
  transform: scale(1.04);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(160deg, var(--color-primary-0) 0%, var(--color-bg-dark) 60%, var(--color-primary-50) 100%);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(97, 75, 219, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta__date {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-mint);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid var(--color-border-mint);
  border-radius: 100px;
  background: rgba(12, 202, 160, 0.07);
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}

.final-cta__title em {
  font-style: italic;
  color: transparent;
  background: linear-gradient(135deg, var(--color-tertiary-400), var(--color-tertiary-600));
  -webkit-background-clip: text;
  background-clip: text;
}

.final-cta__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}

.final-cta__note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-dark);
  border-top: 1px solid rgba(97, 75, 219, 0.10);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__logo img {
  height: 28px;
  opacity: 0.7;
}

.footer__links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer__stores {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__store img {
  width: auto;
  opacity: 0.8;
  transition: opacity var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.footer__store--apple img {
  height: 38px;
}

.footer__store--google img {
  height: 57px;
  /* Compensating for SVG internal whitespace */
  margin: -9.5px 0;
  /* Aligning visually by offsetting whitespace */
}

.footer__store:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.footer__link {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.footer__link:hover {
  color: var(--color-text-primary);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 300;
  text-align: center;
  width: 100%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__text-col {
    max-width: 100%;
    text-align: center;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__benefits {
    justify-content: center;
  }

  .hero__visual-col {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero__mockup-frame {
    transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
  }

  /* Badge'e hero na mobile – wyśrodkowane i lekko nachodz\u0105ce na film */
  .hero__mockup-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .hero__badge,
  .hero__badge-2 {
    position: relative;
    transform: none;
    /* animation dziedziczona z bazy: float-badge 6s ease-in-out infinite */
    align-self: center;
    width: fit-content;
    z-index: 3;
  }

  /* Badge górny (Asystent) nachodzi od dołu na film */
  .hero__badge-2 {
    margin-bottom: -12px;
  }

  /* Badge dolny (Inspiracja) nachodzi od góry na film */
  .hero__badge {
    bottom: auto;
    left: auto;
    margin-top: -12px;
  }

  .hero__mockup-glow {
    display: none;
  }

  .safezone__inner {
    grid-template-columns: 1fr;
  }

  .safezone__visual {
    order: 0;
  }

  .audience__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .how__steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how__steps::before {
    display: none;
  }

  .compare__grid {
    grid-template-columns: 1fr;
  }

  .compare__divider {
    flex-direction: row;
  }

  .compare__divider-line {
    width: 100%;
    height: 1px;
    flex: 1;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }


  .nav__mobile-toggle {
    display: flex;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .footer__links {
    justify-content: center;
    gap: 16px 24px;
  }

  .safezone__shield-wrap {
    width: 260px;
    height: 280px;
  }

  /* Safezone: feed przestaje być absolutny, staje się blokiem pod tarczą */
  .safezone__feed {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .safezone-card {
    width: calc(50% - 8px);
    min-width: 140px;
    max-width: 180px;
  }

  .showcase__img-wrap {
    width: 280px;
  }

  .showcase__img {
    height: 180px;
  }
}

/* ============================================================
   PLATFORMY (TRUSTED SYNC)
   ============================================================ */
.platforms {
  background: var(--color-bg-deep);
  border-top: 1px solid rgba(97, 75, 219, 0.08);
  border-bottom: 1px solid rgba(97, 75, 219, 0.08);
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
}

.platforms::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(97, 75, 219, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.platforms__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.platforms__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 14px;
}

.platforms__heading em {
  font-style: italic;
  color: transparent;
  background: linear-gradient(135deg, var(--color-primary-300), var(--color-primary-400));
  -webkit-background-clip: text;
  background-clip: text;
}

.platforms__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.platforms__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.platforms__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--color-bg-card);
  border: 1px solid rgba(97, 75, 219, 0.10);
  border-radius: 100px;
  cursor: default;
  box-shadow: 0 2px 8px rgba(97, 75, 219, 0.06);
  transition: border-color var(--duration-med) ease,
    box-shadow var(--duration-med) ease,
    transform var(--duration-med) var(--ease-out),
    background var(--duration-med) ease;
}

.platforms__item:hover {
  border-color: rgba(97, 75, 219, 0.30);
  background: rgba(97, 75, 219, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(97, 75, 219, 0.10);
}

.platforms__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* Brand colors for each platform */
.platforms__icon--fb {
  background: rgba(78, 139, 249, 0.15);
  color: rgba(78, 139, 249, 1);
}

.platforms__icon--ig {
  background: rgba(230, 110, 156, 0.15);
  color: rgba(230, 110, 156, 1);
}

.platforms__icon--tt {
  background: rgba(94, 209, 203, 0.15);
  color: rgba(94, 209, 203, 1);
}

.platforms__icon--li {
  background: rgba(41, 121, 216, 0.15);
  color: rgba(41, 121, 216, 1);
}

.platforms__icon--yt {
  background: rgba(255, 70, 70, 0.15);
  color: rgba(255, 70, 70, 1);
}

.platforms__icon--x {
  background: rgba(30, 30, 50, 0.08);
  color: rgba(30, 30, 50, 0.75);
}

.platforms__name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  white-space: nowrap;
  transition: color var(--duration-fast) ease;
}

.platforms__item:hover .platforms__name {
  color: var(--color-text-primary);
}

.platforms__item--soon {
  opacity: 0.5;
  filter: grayscale(100%);
  pointer-events: none;
}

/* ============================================================
   NARZĘDZIA (FEATURES GRID)
   ============================================================ */
.features {
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(97, 75, 219, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Primary (large) card — first item spans differently */
.feature-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(97, 75, 219, 0.10);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 40px);
  display: grid;
  grid-template-areas:
    "icon body"
    "preview preview";
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  gap: 16px 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 12px rgba(97, 75, 219, 0.06);
  transition: border-color var(--duration-med) ease,
    box-shadow var(--duration-med) ease,
    transform var(--duration-med) var(--ease-out);
  cursor: default;
}

.feature-card:hover {
  border-color: rgba(97, 75, 219, 0.25);
  box-shadow: 0 24px 60px rgba(97, 75, 219, 0.10), 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

/* First card — spans the grid automatically adding priority */
.feature-card--primary {
  grid-column: 1 / -1;
  grid-template-areas: "icon body preview";
  grid-template-columns: 52px minmax(260px, 35%) 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  background: linear-gradient(135deg, var(--color-bg-card) 70%, rgba(97, 75, 219, 0.04));
  border-color: rgba(97, 75, 219, 0.16);
}

.feature-card--primary .feature-card__title {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  margin-top: 0;
  margin-bottom: 8px;
}

.feature-card--primary .feature-card__desc {
  font-size: 1.05rem;
  max-width: 400px;
}

.feature-card--primary .feature-card__icon {
  align-self: center;
  transform: translateY(-8px);
}

.feature-card__icon {
  grid-area: icon;
  font-size: 1.5rem;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  background: linear-gradient(135deg, var(--color-primary-800), var(--color-primary-600));
  color: #FFFFFF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(97, 75, 219, 0.3);
  align-self: start;
  transition: box-shadow var(--duration-med) ease;
}

.feature-card__icon .lucide {
  width: 24px;
  height: 24px;
}

.feature-card:hover .feature-card__icon {
  box-shadow: 0 12px 32px rgba(97, 75, 219, 0.45);
}

.feature-card__body {
  grid-area: body;
  min-width: 0;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.feature-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.feature-card__preview {
  grid-area: preview;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(97, 75, 219, 0.10);
  box-shadow: 0 4px 16px rgba(97, 75, 219, 0.08), 0 1px 4px rgba(0, 0, 0, 0.05);
  max-height: 180px;
}

.feature-card__img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
  transition: transform var(--duration-slow) var(--ease-out);
  padding: 8px;
}

.feature-card:hover .feature-card__img {
  transform: scale(1.04);
}

/* AI Magic Reveal Effect - Wide Layout Overlap */
.feature-card__preview--ai {
  position: relative;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: block;
  padding: 0;
  min-height: 400px;
  overflow: hidden;
}

.feature-card__preview--ai .feature-card__img--base,
.feature-card__preview--ai .feature-card__img--overlay {
  object-fit: contain;
  object-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 12px;
}

.feature-card__preview--ai .feature-card__img--base {
  left: 10%;
  width: 50%;
  height: 65%;
  z-index: 1;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
  animation: ai-float-base 6s infinite ease-in-out;
}

@keyframes ai-float-base {

  0%,
  100% {
    transform: translateY(-50%);
  }

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

.feature-card__preview--ai .feature-card__img--overlay {
  right: 15%;
  width: 45%;
  height: 90%;
  z-index: 2;
  opacity: 0;
  filter: drop-shadow(0px 15px 30px rgba(30, 252, 192, 0.15));
  animation: ai-reveal-overlap 6s infinite var(--ease-out);
}

@keyframes ai-reveal-overlap {

  0%,
  15% {
    opacity: 0;
    transform: translateY(-50%) translateX(-20px);
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  }

  25%,
  75% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    filter: drop-shadow(0px 15px 30px rgba(30, 252, 192, 0.15));
  }

  85%,
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(-20px);
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  }
}

.feature-card__scanner {
  position: absolute;
  top: 0;
  left: -50%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(30, 252, 192, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 10;
  animation: ai-scan-wide 6s infinite ease-in-out;
}

@keyframes ai-scan-wide {

  0%,
  5% {
    left: -100%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  35% {
    left: 150%;
    opacity: 1;
  }

  45%,
  100% {
    left: 150%;
    opacity: 0;
  }
}

.feature-card__scanner {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 60%;
  height: 200%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(30, 252, 192, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 10;
  animation: ai-scan 6s infinite ease-in-out;
}

@keyframes ai-scan {

  0%,
  5% {
    left: -100%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  25% {
    left: 150%;
    opacity: 1;
  }

  35%,
  100% {
    left: 150%;
    opacity: 0;
  }
}

/* Mobile nav open state */
.nav__links.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  padding: 24px 32px;
  gap: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(97, 75, 219, 0.10);
  box-shadow: 0 12px 40px rgba(97, 75, 219, 0.08);
  z-index: 200;
}

/* Calendar Auto-Fill Animation */
.feature-card__preview--calendar {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-dark);
  min-height: 220px;
}

.feature-card__preview--calendar .feature-card__img--empty,
.feature-card__preview--calendar .feature-card__img--full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.feature-card__preview--calendar .feature-card__img--empty {
  z-index: 1;
}

.feature-card__preview--calendar .feature-card__img--full {
  z-index: 2;
  opacity: 0;
  animation: calendar-fill 6s infinite ease-in-out;
}

@keyframes calendar-fill {

  0%,
  20% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  25% {
    clip-path: inset(0 0 100% 0);
    opacity: 1;
  }

  50%,
  80% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }

  85%,
  95% {
    clip-path: inset(0 0 0 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
}

.calendar-scan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(30, 252, 192, 0.4) 100%);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  animation: calendar-scanner 6s infinite ease-in-out;
}

@keyframes calendar-scanner {

  0%,
  20% {
    top: -50%;
    opacity: 0;
  }

  25% {
    top: -50%;
    opacity: 1;
  }

  50% {
    top: 50%;
    opacity: 1;
  }

  55%,
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Infinite Scrolling Feed Animation */
.feature-card__preview--scroll {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-dark);
  min-height: 220px;
}

.feature-card__preview--scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, var(--color-bg-dark) 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.feature-card__preview--scroll .feature-card__img--scroll {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
  animation: ui-scroll-feed 12s infinite alternate ease-in-out;
}

@keyframes ui-scroll-feed {

  0%,
  15% {
    object-position: center 0%;
  }

  85%,
  100% {
    object-position: center 100%;
  }
}

/* Analytics Widget Growth Animation - Floating & Sliding */
.feature-card__preview--analytics {
  position: relative;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: block;
  padding: 0;
  min-height: 400px;
  overflow: hidden;
}

.analytics-widget {
  position: absolute;
  /* Usunięty narzucony aspect ratio by grafika mogła skalować się naturalnie 1:1, bez interpolacji. */
}

.analytics-widget img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  /* Poprawki na rozmazywanie antyaliasingów GPU we floatujących animacjach */
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
  will-change: transform, opacity;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.08);
  /* Zamiast filter() który zawsze rozamazuje elementy podczas animacji! */
}

.analytics-widget .feature-card__img--empty {
  position: relative;
  /* Daje naturalną wysokość rodzicowi */
  z-index: 1;
}

.analytics-widget .feature-card__img--full {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}

/* Stagger positions (Układ piramidalny, z odstępem od krawędzi) */
.analytics-widget--shows {
  top: 8%;
  left: 6%;
  width: 40%;
  z-index: 5;
  animation: widget-float-left 8s infinite ease-in-out;
}

.analytics-widget--engagement {
  top: 8%;
  right: 6%;
  width: 40%;
  z-index: 6;
  animation: widget-float-right 8s infinite ease-in-out reverse;
}

.analytics-widget--hours {
  bottom: 8%;
  left: 50%;
  margin-left: -33%;
  width: 66%;
  z-index: 7;
  animation: widget-float-center 10s infinite ease-in-out;
}

/* Sliding Overlay Upgrade Effect */
.analytics-widget--shows .feature-card__img--full {
  animation: widget-slide-upgrade-1 8s infinite ease-in-out;
}

.analytics-widget--engagement .feature-card__img--full {
  animation: widget-slide-upgrade-2 8s infinite ease-in-out;
}

@keyframes widget-float-left {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(0deg);
  }
}

@keyframes widget-float-right {

  0%,
  100% {
    transform: translateY(0px);
  }

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

@keyframes widget-float-center {

  0%,
  100% {
    transform: translateY(0px) scale(0.98);
  }

  50% {
    transform: translateY(8px) scale(1.02);
  }
}

@keyframes widget-slide-upgrade-1 {

  0%,
  25% {
    opacity: 0;
    transform: translateX(30px);
  }

  35%,
  85% {
    opacity: 1;
    transform: translateX(0);
  }

  95%,
  100% {
    opacity: 0;
    transform: translateX(-30px);
  }
}

@keyframes widget-slide-upgrade-2 {

  0%,
  40% {
    opacity: 0;
    transform: translateX(30px);
  }

  50%,
  85% {
    opacity: 1;
    transform: translateX(0);
  }

  95%,
  100% {
    opacity: 0;
    transform: translateX(-30px);
  }
}

/* Responsive for new sections */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: 1fr;
  }

  .feature-card--primary {
    display: grid;
    grid-template-areas:
      "icon body"
      "preview preview";
    grid-template-columns: 52px 1fr;
    grid-column: 1 / -1;
  }

  .feature-card--primary .feature-card__preview {
    width: 100%;
    min-height: 340px;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
  }

  .platforms__grid {
    gap: 10px;
  }

  .platforms__item {
    padding: 11px 16px;
  }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 6, 20, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-med) ease, visibility var(--duration-med) ease;
  padding: 40px;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  position: relative;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  transform: scale(0.95);
  transition: transform var(--duration-med) var(--ease-out);
  display: flex;
  justify-content: center;
}

.lightbox.is-open .lightbox__content {
  transform: scale(1);
}

.lightbox__img {
  max-width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--duration-fast) ease;
  opacity: 0.7;
}

.lightbox__close:hover {
  color: var(--color-accent-mint);
  opacity: 1;
}

@media (max-width: 768px) {
  .lightbox {
    padding: 20px;
  }
}