:root {
  color-scheme: dark;
}

body {
  background:
    radial-gradient(circle at top, rgba(121, 247, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #090d1b 0%, #04050d 48%, #060814 100%);
}

::selection {
  background: rgba(121, 247, 255, 0.22);
  color: #ffffff;
}

.site-shell {
  background:
    radial-gradient(circle at 20% 8%, rgba(228, 125, 255, 0.13), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(121, 247, 255, 0.14), transparent 26%),
    radial-gradient(circle at 50% 70%, rgba(255, 92, 114, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(5, 8, 22, 0.98), rgba(3, 6, 18, 1));
}

.ambient-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 88%);
  mask-image: radial-gradient(circle at center, black 35%, transparent 88%);
}

.orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(100px);
  opacity: 0.42;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: drift 18s ease-in-out infinite;
}

.orb-magenta {
  top: 5rem;
  left: -4rem;
  width: 16rem;
  height: 16rem;
  background: rgba(228, 125, 255, 0.45);
}

.orb-cyan {
  top: 16rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(121, 247, 255, 0.38);
  animation-delay: -6s;
}

.orb-signal {
  bottom: 8rem;
  left: 40%;
  width: 14rem;
  height: 14rem;
  background: rgba(255, 92, 114, 0.32);
  animation-delay: -10s;
}

.page-v2 .site-shell {
  background:
    radial-gradient(circle at 20% 8%, rgba(228, 125, 255, 0.13), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(121, 247, 255, 0.14), transparent 26%),
    radial-gradient(circle at 50% 70%, rgba(255, 92, 114, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(5, 8, 22, 0.98), rgba(3, 6, 18, 1));
}

.page-v2 .hero-v2,
.page-v2 .problem-v2,
.page-v2 .solution-v2,
.page-v2 .cta-v2 {
  position: relative;
}

.gradient-text {
  display: inline-block;
  background: linear-gradient(90deg, #e47dff 0%, #ff5c72 42%, #79f7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.95rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 280ms ease,
    background-color 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    color 280ms ease;
}

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

.cta-pill-solid {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.cta-pill-solid:hover {
  border-color: rgba(121, 247, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.cta-pill-bright {
  background: #ffffff;
  color: #050816;
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.1);
}

.cta-pill-bright:hover {
  background: #79f7ff;
}

.cta-pill-ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.02);
}

.cta-pill-ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.cta-pill-rainbow {
  background: linear-gradient(90deg, #e47dff 0%, #ff5c72 45%, #79f7ff 100%);
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(228, 125, 255, 0.24);
}

.cta-pill-rainbow:hover {
  box-shadow: 0 28px 72px rgba(121, 247, 255, 0.22);
}

.hero-v2::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.hero-visual {
  position: relative;
  min-height: 34rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-outline {
  position: absolute;
  border-radius: 2rem;
  border: 2px solid;
  pointer-events: none;
  animation: floatOutline 12s ease-in-out infinite;
}

.hero-outline-magenta {
  left: 3%;
  top: 10%;
  width: 44%;
  height: 68%;
  border-color: rgba(228, 125, 255, 0.88);
  box-shadow:
    0 0 18px rgba(228, 125, 255, 0.75),
    0 0 48px rgba(228, 125, 255, 0.32);
}

.hero-outline-cyan {
  right: 0;
  top: 26%;
  width: 66%;
  height: 46%;
  border-color: rgba(121, 247, 255, 0.92);
  box-shadow:
    0 0 18px rgba(121, 247, 255, 0.8),
    0 0 48px rgba(121, 247, 255, 0.32);
  animation-delay: -5s;
}

.poster-frame {
  position: relative;
  width: min(100%, 33rem);
  aspect-ratio: 1;
  border-radius: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(14, 19, 37, 0.74), rgba(4, 7, 17, 0.92)),
    radial-gradient(circle at top, rgba(121, 247, 255, 0.14), transparent 30%);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 48px 120px rgba(1, 4, 12, 0.82);
}

.poster-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.poster-frame-small {
  width: min(100%, 21rem);
}

.poster-glow {
  position: absolute;
  inset: 18% 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 92, 114, 0.34) 0%, rgba(228, 125, 255, 0.18) 38%, transparent 70%);
  filter: blur(28px);
}

.hero-art {
  position: absolute;
  inset: 11%;
  width: 78%;
  height: 78%;
  object-fit: contain;
  margin: auto;
  filter:
    drop-shadow(0 0 26px rgba(255, 92, 114, 0.34))
    drop-shadow(0 0 44px rgba(121, 247, 255, 0.18));
}

.problem-v2 {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

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

.problem-card {
  position: relative;
  min-height: 18rem;
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(13, 18, 35, 0.78), rgba(5, 8, 20, 0.96)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 48px rgba(1, 4, 12, 0.46);
}

.problem-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.problem-chip-signal {
  background: rgba(255, 92, 114, 0.12);
  color: #ff7b8d;
  box-shadow: 0 0 22px rgba(255, 92, 114, 0.18);
}

.problem-chip-cyan {
  background: rgba(121, 247, 255, 0.12);
  color: #79f7ff;
  box-shadow: 0 0 22px rgba(121, 247, 255, 0.14);
}

.problem-chip-magenta {
  background: rgba(228, 125, 255, 0.12);
  color: #e47dff;
  box-shadow: 0 0 22px rgba(228, 125, 255, 0.18);
}

.problem-title {
  margin-top: 1.45rem;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.problem-copy {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.66);
}

.solution-v2 {
  overflow: hidden;
}

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  flex: none;
}

.feature-icon-signal {
  background: linear-gradient(135deg, rgba(228, 125, 255, 0.9), rgba(255, 92, 114, 0.9));
}

.feature-icon-cyan {
  background: linear-gradient(135deg, rgba(121, 247, 255, 0.9), rgba(74, 180, 255, 0.9));
}

.feature-icon-magenta {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.95), rgba(228, 125, 255, 0.92));
}

.feature-icon-warm {
  background: linear-gradient(135deg, rgba(255, 150, 66, 0.95), rgba(255, 92, 114, 0.92));
}

.feature-headline {
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.feature-text {
  margin-top: 0.7rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.66);
}

.demo-stage {
  position: relative;
  min-height: 42rem;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}

.demo-aura {
  position: absolute;
  inset: 12% 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(121, 247, 255, 0.18) 0%, rgba(228, 125, 255, 0.12) 38%, transparent 72%);
  filter: blur(36px);
  pointer-events: none;
}

.phone-shell {
  position: relative;
  width: min(100%, 23rem);
  aspect-ratio: 0.56;
  padding: 0.95rem;
  border-radius: 3rem;
  background:
    linear-gradient(180deg, rgba(10, 15, 31, 0.92), rgba(4, 7, 18, 0.98)),
    radial-gradient(circle at top, rgba(121, 247, 255, 0.12), transparent 26%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 40px 120px rgba(1, 4, 12, 0.76);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: floatDevice 9s ease-in-out infinite;
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(10, 14, 29, 0.82), rgba(4, 7, 18, 0.98));
}

.camera-view {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 147, 104, 0.16), transparent 20%),
    linear-gradient(180deg, #101626 0%, #0a1020 48%, #050816 100%);
}

.camera-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.32)),
    radial-gradient(circle at bottom, rgba(121, 247, 255, 0.05), transparent 28%);
}

.city-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(24px);
  mix-blend-mode: screen;
}

.city-glow-1 {
  left: 18%;
  top: 22%;
  width: 5rem;
  height: 5rem;
  background: rgba(121, 247, 255, 0.24);
}

.city-glow-2 {
  right: 16%;
  top: 30%;
  width: 7rem;
  height: 7rem;
  background: rgba(255, 92, 114, 0.24);
}

.camera-status {
  position: absolute;
  top: 1.6rem;
  left: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.camera-status::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  display: block;
  border-radius: 9999px;
  background: #ff5c72;
  box-shadow: 0 0 14px rgba(255, 92, 114, 0.72);
  animation: pulseDot 1.4s ease-in-out infinite;
}

.pip-window {
  position: absolute;
  top: 1.8rem;
  right: 1.4rem;
  width: 30%;
  aspect-ratio: 0.7;
  overflow: hidden;
  border-radius: 1.3rem;
  border: 2px solid rgba(228, 125, 255, 0.9);
  background:
    linear-gradient(180deg, rgba(20, 24, 43, 0.5), rgba(9, 12, 24, 0.82)),
    radial-gradient(circle at center, rgba(255, 92, 114, 0.1), transparent 60%);
  box-shadow:
    0 0 24px rgba(228, 125, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pip-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 16%;
  opacity: 0.92;
}

.record-wrap {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  width: 5rem;
  height: 5rem;
  transform: translateX(-50%);
  border-radius: 9999px;
  border: 4px solid rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.record-core {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 9999px;
  background: #ff5c72;
  box-shadow: 0 0 28px rgba(255, 92, 114, 0.52);
}

.cta-v2 {
  overflow: hidden;
}

.cta-shell {
  position: relative;
  padding: 4rem 2rem;
}

.cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(92vw, 48rem);
  height: min(92vw, 48rem);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(228, 125, 255, 0.14) 0%, rgba(255, 92, 114, 0.08) 34%, rgba(121, 247, 255, 0.08) 55%, transparent 76%);
  filter: blur(40px);
  pointer-events: none;
}

.copy-inline,
.copy-block {
  display: none;
}

html:not([data-ui-lang]) .copy-inline[data-copy-lang="en"],
html[data-ui-lang="en"] .copy-inline[data-copy-lang="en"],
html[data-ui-lang="pl"] .copy-inline[data-copy-lang="pl"],
html[data-ui-lang="pt-br"] .copy-inline[data-copy-lang="pt-br"] {
  display: inline;
}

html:not([data-ui-lang]) .copy-block[data-copy-lang="en"],
html[data-ui-lang="en"] .copy-block[data-copy-lang="en"],
html[data-ui-lang="pl"] .copy-block[data-copy-lang="pl"],
html[data-ui-lang="pt-br"] .copy-block[data-copy-lang="pt-br"] {
  display: block;
}

.header-link {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 220ms ease;
}

.header-link:hover {
  color: rgba(255, 255, 255, 0.94);
}

.content-shell {
  position: relative;
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(13, 18, 35, 0.76), rgba(5, 8, 20, 0.96)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 40%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 54px rgba(1, 4, 12, 0.42);
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.info-item {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.info-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.info-copy {
  margin-top: 0.9rem;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
}

.info-copy-strong {
  color: rgba(255, 255, 255, 0.9);
}

.policy-meta {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.policy-heading {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.policy-list {
  margin-top: 1rem;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.policy-list li {
  margin-top: 0.9rem;
  padding-left: 0.2rem;
  line-height: 1.8;
}

.policy-list li::marker {
  color: rgba(121, 247, 255, 0.8);
}

.contact-mail {
  display: block;
  max-width: 100%;
  color: #79f7ff;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color 220ms ease;
}

.contact-mail:hover {
  color: #ffffff;
}

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

.support-grid-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 34rem;
}

.support-card {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(13, 18, 35, 0.76), rgba(5, 8, 20, 0.96)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 48px rgba(1, 4, 12, 0.42);
}

.support-card-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.support-card-copy {
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.66);
}

.footer-link {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color 220ms ease;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 900ms ease,
    transform 900ms ease;
}

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -26px, 0) scale(1.04);
  }
}

@keyframes floatDevice {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatOutline {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(0.88);
  }
}

@media (max-width: 1023px) {
  .problem-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .demo-stage {
    min-height: 36rem;
  }
}

@media (max-width: 767px) {
  .ambient-grid {
    background-size: 52px 52px;
  }

  .hero-visual {
    min-height: 24rem;
  }

  .poster-frame {
    width: min(100%, 21rem);
    border-radius: 2.2rem;
  }

  .poster-frame-small {
    width: min(100%, 18rem);
  }

  .problem-card {
    min-height: auto;
    padding: 1.55rem;
  }

  .feature-line {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    width: min(100%, 18.5rem);
    border-radius: 2.4rem;
  }

  .phone-screen {
    border-radius: 1.9rem;
  }

  .cta-shell {
    padding: 3rem 0.25rem;
  }

  .content-shell,
  .support-card {
    padding: 1.5rem;
  }
}

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