:root {
  --v3-blue: #0071e3;
  --v3-blue-hover: #0077ed;
  --v3-purple: #8f7cff;
  --v3-purple-2: #b6a8ff;
  --v3-cyan: #7ec7ff;
  --v3-black: #000000;
  --v3-ink: #1d1d1f;
  --v3-grey: #6e6e73;
  --v3-soft: #f5f5f7;
  --v3-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: #000;
  scroll-behavior: smooth;
}

body.v3-body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--v3-ink);
  background: #ffffff;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Helvetica Neue",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.v3-body a {
  color: inherit;
  text-decoration: none;
}

/* NAV */

.v3-nav {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  color: #f5f5f7;
  background: rgba(18, 18, 19, 0.84);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
}

.v3-nav-inner {
  width: min(calc(100% - 36px), 1060px);
  height: 52px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.v3-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 670;
  letter-spacing: -0.55px;
}

.v3-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
}

.v3-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.v3-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 430;
  transition: color 160ms ease;
}

.v3-links a:hover {
  color: #ffffff;
}

.v3-nav-button {
  justify-self: end;
  padding: 8px 15px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #1080ff 0%, #0067d6 100%);
  font-size: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 8px 20px rgba(0, 113, 227, 0.28);
}

/* HERO */

.v3-hero {
  position: relative;
  min-height: 1160px;
  padding: 102px 24px 0;
  overflow: hidden;
  color: #f5f5f7;
  text-align: center;
  background:
    radial-gradient(circle at 50% 17%, rgba(165, 137, 255, 0.20) 0%, transparent 26%),
    radial-gradient(circle at 50% 75%, rgba(56, 104, 255, 0.12) 0%, transparent 28%),
    #000000;
}

.v3-hero-copy {
  position: relative;
  z-index: 8;
  width: min(100%, 1020px);
  margin: 0 auto;
}

.v3-glowword {
  margin: 0 0 18px;
  font-size: clamp(58px, 8vw, 110px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.28);
  text-shadow:
    0 0 12px rgba(255,255,255,0.18),
    0 0 22px rgba(196,180,255,0.18),
    0 0 46px rgba(146,170,255,0.22),
    0 0 90px rgba(114,144,255,0.18);
}

.v3-glowword::first-letter {
  color: rgba(255,255,255,0.55);
}

.v3-hero h1 {
  margin: 0;
  font-size: clamp(64px, 7.6vw, 112px);
  font-weight: 680;
  line-height: 0.92;
  letter-spacing: -0.078em;
}

.v3-hero h1 span {
  color: transparent;
  background:
    linear-gradient(90deg, #ffffff 0%, #d6ccff 34%, #9dbfff 68%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.v3-lead {
  width: min(100%, 760px);
  margin: 25px auto 0;
  color: rgba(245, 245, 247, 0.84);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 410;
  line-height: 1.32;
  letter-spacing: -0.03em;
}

.v3-lead strong {
  color: #ffffff;
  font-weight: 580;
}

.v3-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 31px;
}

.v3-actions a {
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 450;
}

.v3-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #1080ff 0%, #0067d6 100%);
  box-shadow:
    0 10px 30px rgba(0, 113, 227, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.v3-primary:hover {
  background: linear-gradient(135deg, #1990ff 0%, #0070e5 100%);
}

.v3-secondary {
  border: 1px solid rgba(54, 152, 255, 0.72);
  color: #2997ff;
  background: rgba(255,255,255,0.02);
}

.v3-secondary:hover {
  color: #ffffff;
  background: rgba(0,113,227,0.88);
}

.v3-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 24px;
  color: rgba(245, 245, 247, 0.54);
  font-size: 12px;
}

.v3-stage {
  --v3-stage-y: 0px;
  --v3-stage-scale: 1;

  position: relative;
  z-index: 4;
  width: min(1240px, 96vw);
  height: 720px;
  margin: 56px auto 0;
  transform:
    translate3d(0, var(--v3-stage-y), 0)
    scale(var(--v3-stage-scale));
  transform-origin: center bottom;
  will-change: transform;
}

.v3-stage-glow {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 860px;
  height: 360px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(128, 94, 255, 0.27) 0%, rgba(71, 108, 255, 0.13) 35%, transparent 73%);
  filter: blur(36px);
}

.v3-phone-shell {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 430px;
  height: 760px;
  transform: translateX(-50%);
}

.v3-phone-bezel {
  position: absolute;
  inset: 0;
  padding: 12px;
  border-radius: 68px;
  background: linear-gradient(180deg, #19191d 0%, #0a0a0d 100%);
  box-shadow:
    0 65px 140px rgba(0, 0, 0, 0.68),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}

.v3-notch {
  position: absolute;
  z-index: 5;
  top: 16px;
  left: 50%;
  width: 120px;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000000;
}

.v3-screen {
  height: 100%;
  padding: 58px 22px 22px;
  overflow: hidden;
  border-radius: 56px;
  background:
    linear-gradient(180deg, #fcfbff 0%, #f6f5fb 100%);
}

.v3-app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v3-logo-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1d1d1f;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.v3-logo-mini i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, #8d67ff, #6a4fff);
}

.v3-badge-mini {
  padding: 6px 10px;
  border-radius: 999px;
  color: #5f45d5;
  background: #ece7ff;
  font-size: 12px;
  font-weight: 650;
}

.v3-search {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  color: #817792;
  background: #efedf5;
  font-size: 14px;
}

.v3-product-card {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(62, 45, 110, 0.08);
}

.v3-product-thumb {
  height: 92px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 26%, #9068ff 0%, #6d4ef2 40%, #5c46be 100%);
  position: relative;
}

.v3-product-thumb::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  width: 34px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 50% 50% 40% 40%;
  background: rgba(32, 13, 59, 0.42);
}

.v3-product-thumb::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 46px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(21, 5, 48, 0.55);
}

.v3-product-info small,
.v3-product-info strong,
.v3-product-info span {
  display: block;
}

.v3-product-info small {
  color: #1d1d1f;
  font-size: 15px;
  font-weight: 670;
}

.v3-product-info strong {
  margin-top: 7px;
  color: #5f35bb;
  font-size: 38px;
  font-weight: 760;
  letter-spacing: -0.06em;
}

.v3-product-info span {
  margin-top: 8px;
  color: #7a7188;
  font-size: 13px;
}

.v3-heart {
  align-self: start;
  color: #7b58f7;
  font-size: 22px;
  font-weight: 700;
}

.v3-seller-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(62, 45, 110, 0.08);
}

.v3-seller-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.v3-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #522baf;
  background: #e8dfff;
  font-weight: 760;
}

.v3-seller-head strong,
.v3-seller-head span {
  display: block;
}

.v3-seller-head strong {
  font-size: 15px;
}

.v3-seller-head span {
  margin-top: 4px;
  color: #83798f;
  font-size: 12px;
}

.v3-rating {
  color: #6342d6;
  font-size: 14px;
  font-weight: 700;
}

.v3-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.v3-stats div {
  padding: 14px 10px;
  border-radius: 16px;
  text-align: center;
  background: #f4f2f8;
}

.v3-stats small,
.v3-stats strong {
  display: block;
}

.v3-stats small {
  color: #8a8196;
  font-size: 10px;
  text-transform: lowercase;
}

.v3-stats strong {
  margin-top: 5px;
  color: #1d1d1f;
  font-size: 14px;
}

.v3-safe-box {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 20px;
  color: #236b56;
  background: #ecf8f3;
}

.v3-safe-icon {
  width: 28px;
  height: 28px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #2b9a72;
  font-weight: 700;
}

.v3-safe-box strong,
.v3-safe-box span {
  display: block;
}

.v3-safe-box strong {
  font-size: 14px;
}

.v3-safe-box span {
  margin-top: 4px;
  color: #5b8476;
  font-size: 12px;
}

.v3-bottom-pills {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.v3-bottom-pills span {
  padding: 10px 12px;
  border-radius: 999px;
  color: #655b74;
  background: #efedf4;
  font-size: 11px;
  font-weight: 650;
}

.v3-side-card {
  position: absolute;
  z-index: 8;
  width: 210px;
  padding: 18px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  text-align: left;
  background: rgba(25, 25, 29, 0.72);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.48),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.v3-side-card small,
.v3-side-card span {
  display: block;
  color: rgba(255,255,255,0.54);
  font-size: 11px;
}

.v3-side-card strong {
  display: block;
  margin: 4px 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.v3-side-left {
  left: 7%;
  top: 36%;
}

.v3-side-right {
  right: 7%;
  top: 26%;
}

/* PANELS */

.v3-panel {
  position: relative;
  padding: 110px 24px;
  overflow: hidden;
}

.v3-panel-ice {
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.75), transparent 28%),
    linear-gradient(145deg, #dff4ff 0%, #f3fbff 50%, #ffffff 100%);
}

.v3-panel-soft {
  background:
    linear-gradient(180deg, #f7f7fb 0%, #f3f3f7 100%);
}

.v3-panel-copy {
  width: min(100%, 1040px);
  margin: 0 auto;
  text-align: center;
}

.v3-kicker {
  margin: 0 0 14px;
  color: var(--v3-blue);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.v3-panel-copy h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 660;
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.v3-panel-copy h2 span {
  color: #0e78e7;
}

.v3-panel-copy > p:last-child {
  width: min(100%, 720px);
  margin: 20px auto 0;
  color: #6e6e73;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.v3-trust-board {
  width: min(100%, 900px);
  margin: 72px auto 0;
}

.v3-trust-window {
  padding: 16px;
  border-radius: 36px;
  background: rgba(255,255,255,0.86);
  box-shadow:
    0 55px 120px rgba(61, 116, 153, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.v3-window-top {
  display: flex;
  gap: 8px;
  padding: 4px 0 12px 6px;
}

.v3-window-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #dddfe5;
}

.v3-window-main {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 16px;
}

.v3-window-left,
.v3-window-right {
  padding: 22px;
  border-radius: 26px;
  background: #ffffff;
}

.v3-window-left small {
  color: #7d7689;
  font-size: 13px;
}

.v3-window-left strong {
  display: block;
  margin-top: 8px;
  color: #1d1d1f;
  font-size: 58px;
  letter-spacing: -0.08em;
}

.v3-progress {
  height: 10px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #ececf1;
}

.v3-progress span {
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7c56ff 0%, #4f8fff 100%);
}

.v3-window-left p {
  margin: 18px 0 0;
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.5;
}

.v3-window-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.v3-window-right div {
  padding: 18px;
  border-radius: 20px;
  background: #f5f5f7;
}

.v3-window-right small,
.v3-window-right strong {
  display: block;
}

.v3-window-right small {
  color: #84848a;
  font-size: 11px;
}

.v3-window-right strong {
  margin-top: 6px;
  color: #1d1d1f;
  font-size: 18px;
}

/* GRID */

.v3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  background: #ffffff;
}

.v3-tile {
  position: relative;
  min-height: 780px;
  padding: 58px;
  overflow: hidden;
  text-align: center;
}

.v3-tile-light {
  background:
    radial-gradient(circle at 50% 78%, rgba(255,255,255,0.95), transparent 42%),
    linear-gradient(150deg, #d7f3ff 0%, #eefaff 100%);
}

.v3-tile-dark {
  color: #f5f5f7;
  background:
    radial-gradient(circle at 50% 82%, rgba(116, 93, 255, 0.20) 0%, transparent 34%),
    #000000;
}

.v3-tile-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 520px);
  margin: 0 auto;
}

.v3-tile-copy h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.v3-tile-copy span {
  display: block;
  margin-top: 18px;
  color: #6e6e73;
  font-size: 19px;
  line-height: 1.42;
}

.v3-tile-dark .v3-tile-copy span {
  color: #a1a1a6;
}

.v3-stack {
  position: absolute;
  left: 50%;
  bottom: 56px;
  width: 470px;
  height: 360px;
  transform: translateX(-50%);
}

.v3-stack-card {
  position: absolute;
  left: 50%;
  width: 320px;
  padding: 26px;
  border-radius: 30px;
  text-align: left;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 35px 80px rgba(40, 96, 128, 0.18);
}

.v3-stack-card i {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 13px;
  background: linear-gradient(145deg, #8e69ff, #577bf5);
}

.v3-stack-card strong,
.v3-stack-card small {
  display: block;
}

.v3-stack-card strong {
  font-size: 18px;
}

.v3-stack-card small {
  margin-top: 6px;
  color: #6e6e73;
}

.stack-back {
  bottom: 72px;
  transform: translateX(-72%) rotate(-11deg) scale(0.9);
  opacity: 0.74;
}

.stack-mid {
  bottom: 40px;
  transform: translateX(-28%) rotate(10deg) scale(0.94);
  opacity: 0.88;
}

.stack-front {
  bottom: 0;
  z-index: 3;
  transform: translateX(-50%);
}

.v3-warning-phone {
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 360px;
  height: 565px;
  transform: translateX(-50%);
  padding: 13px;
  border-radius: 58px;
  background: linear-gradient(180deg, #1b1b20 0%, #070709 100%);
  box-shadow:
    0 60px 110px rgba(0,0,0,0.66),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

.v3-warning-notch {
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 50%;
  width: 108px;
  height: 31px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000000;
}

.v3-warning-screen {
  height: 100%;
  padding: 58px 18px 18px;
  overflow: hidden;
  border-radius: 48px;
  color: #1d1d1f;
  text-align: left;
  background: #ffffff;
}

.v3-warning-screen small,
.v3-warning-screen strong {
  display: block;
}

.v3-warning-screen small {
  color: #7d7688;
  font-size: 12px;
}

.v3-warning-screen strong {
  width: 90%;
  margin-top: 6px;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.v3-chat-msg {
  width: 80%;
  margin: 36px 0 0 auto;
  padding: 14px 15px;
  border-radius: 18px 18px 4px 18px;
  color: #ffffff;
  background: #815ef8;
  font-size: 12px;
  line-height: 1.35;
}

.v3-alert-box {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: #fff1f2;
}

.v3-alert-box i {
  width: 28px;
  height: 28px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #cf4459;
  font-style: normal;
  font-weight: 760;
}

.v3-alert-box b,
.v3-alert-box span {
  display: block;
}

.v3-alert-box b {
  color: #a52338;
  font-size: 13px;
}

.v3-alert-box span {
  margin-top: 5px;
  color: #7a4e55;
  font-size: 11px;
  line-height: 1.4;
}

/* STEPS */

.v3-steps {
  width: min(100%, 1040px);
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.v3-step {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(28, 20, 50, 0.06);
  text-align: left;
}

.v3-step b,
.v3-step strong,
.v3-step span {
  display: block;
}

.v3-step b {
  color: var(--v3-blue);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.v3-step strong {
  margin-top: 14px;
  color: #1d1d1f;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.v3-step span {
  margin-top: 12px;
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.5;
}

/* FINAL */

.v3-final {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  padding: 92px 24px;
  overflow: hidden;
  color: #f5f5f7;
  text-align: center;
  background: #000000;
}

.v3-final-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 900px;
  height: 540px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(123, 94, 255, 0.24), rgba(67, 108, 255, 0.10) 38%, transparent 72%);
  filter: blur(40px);
}

.v3-final-content {
  position: relative;
  z-index: 2;
}

.v3-final-content h2 {
  margin: 0;
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.078em;
}

.v3-final-content h2 span {
  color: transparent;
  background: linear-gradient(90deg, #d1c4ff, #7ebeff);
  background-clip: text;
  -webkit-background-clip: text;
}

.v3-final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.v3-final-actions a {
  padding: 14px 26px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #1080ff 0%, #0067d6 100%);
  box-shadow:
    0 12px 30px rgba(0,113,227,0.26),
    inset 0 1px 0 rgba(255,255,255,0.22);
  font-size: 17px;
}

.v3-final-actions span {
  color: #86868b;
  font-size: 13px;
}

/* FOOTER */

.v3-footer {
  min-height: 76px;
  padding: 25px max(24px, calc((100% - 1050px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6e6e73;
  background: #f5f5f7;
  font-size: 12px;
}

/* REVEAL */

.v3-js .v3-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v3-js .v3-reveal.v3-visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */

@media (max-width: 900px) {
  .v3-nav-inner {
    width: calc(100% - 24px);
    grid-template-columns: 1fr auto;
  }

  .v3-links {
    display: none;
  }

  .v3-hero {
    min-height: 980px;
    padding-top: 90px;
  }

  .v3-glowword {
    font-size: clamp(56px, 16vw, 82px);
  }

  .v3-hero h1 {
    font-size: clamp(54px, 14vw, 78px);
  }

  .v3-lead {
    font-size: 19px;
  }

  .v3-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .v3-meta {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .v3-stage {
    width: 100%;
    height: 520px;
    margin-top: 48px;
  }

  .v3-phone-shell {
    width: 310px;
    height: 560px;
  }

  .v3-phone-shell .v3-product-info strong {
    font-size: 26px;
  }

  .v3-side-card {
    display: none;
  }

  .v3-panel {
    padding: 78px 18px;
  }

  .v3-window-main {
    grid-template-columns: 1fr;
  }

  .v3-grid {
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 8px;
  }

  .v3-tile {
    min-height: 720px;
    padding: 54px 18px;
  }

  .v3-stack {
    width: 390px;
    transform: translateX(-50%) scale(0.86);
  }

  .v3-steps {
    grid-template-columns: 1fr;
  }

  .v3-final {
    min-height: 640px;
  }

  .v3-final-content h2 {
    font-size: clamp(54px, 15vw, 78px);
  }

  .v3-footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}


/* =========================================================
   PRZEPŁYW V4 — CINEMATIC PRODUCT EXPERIENCE
   ========================================================= */

.v4-body {
  --v4-pointer-x: 50%;
  --v4-pointer-y: 50%;
}

/* METALICZNY NAPIS — PRZEPŁYW BETA 27 */

.v4-glowword {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 26px;
  overflow: visible;
  line-height: 0.8;
  isolation: isolate;
}

.v4-glow-main,
.v4-glow-sub {
  position: relative;
  display: block;
  color: transparent;
  background:
    linear-gradient(
      104deg,
      #29292c 0%,
      #68686d 17%,
      #f8f8fa 34%,
      #8e8e94 47%,
      #ffffff 58%,
      #c7d9ff 70%,
      #ffffff 82%,
      #4a4a4f 100%
    );
  background-size: 240% 100%;
  background-position: 100% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  filter:
    drop-shadow(0 0 9px rgba(255, 255, 255, 0.17))
    drop-shadow(0 0 22px rgba(166, 145, 255, 0.13));
  animation: v4-metal-sweep 5.8s ease-in-out infinite;
}

.v4-glow-main {
  font-size: clamp(48px, 6.4vw, 92px);
  font-weight: 660;
  letter-spacing: -0.075em;
}

.v4-glow-sub {
  margin-top: 8px;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 540;
  letter-spacing: 0.27em;
  background:
    linear-gradient(
      90deg,
      #8f8f96,
      #ffffff,
      #bbb0ff,
      #8fc5ff,
      #ffffff,
      #77777d
    );
  background-size: 250% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation-delay: 0.35s;
}

.v4-glowword::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 35%;
  left: 50%;
  width: 135%;
  height: 170%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse,
      rgba(255, 255, 255, 0.13) 0%,
      rgba(176, 151, 255, 0.13) 22%,
      rgba(105, 165, 255, 0.08) 42%,
      transparent 71%
    );
  filter: blur(30px);
  animation: v4-glow-breathe 5s ease-in-out infinite;
}

.v4-glowword::after {
  content: "";
  position: absolute;
  top: 15%;
  left: -12%;
  width: 34%;
  height: 85%;
  transform: rotate(13deg);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.42),
      transparent
    );
  filter: blur(15px);
  opacity: 0;
  pointer-events: none;
  animation: v4-light-pass 5.8s ease-in-out infinite;
}

/* HERO — WIĘCEJ ODDECHU I LEPSZA GŁĘBIA */

.v4-body .v3-hero {
  min-height: 1320px;
  padding-top: 92px;
  background:
    radial-gradient(
      ellipse at var(--v4-pointer-x) var(--v4-pointer-y),
      rgba(140, 111, 255, 0.12) 0%,
      transparent 29%
    ),
    radial-gradient(
      circle at 50% 17%,
      rgba(165, 137, 255, 0.17) 0%,
      transparent 25%
    ),
    radial-gradient(
      ellipse at 50% 82%,
      rgba(50, 105, 255, 0.17) 0%,
      transparent 38%
    ),
    #000000;
}

.v4-body .v3-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -240px;
  width: 1300px;
  height: 600px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(128, 155, 255, 0.13);
  background:
    radial-gradient(
      ellipse,
      rgba(99, 77, 210, 0.19),
      rgba(36, 65, 145, 0.08) 48%,
      transparent 73%
    );
  filter: blur(15px);
}

.v4-body .v3-hero-copy {
  z-index: 20;
}

.v4-body .v3-hero h1 {
  font-size: clamp(66px, 7.8vw, 118px);
  line-height: 0.9;
}

.v4-body .v3-lead {
  width: min(100%, 790px);
}

.v4-body .v3-nav-button {
  position: relative;
  overflow: visible;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.09),
    0 0 18px rgba(34, 139, 255, 0.36),
    0 9px 28px rgba(0, 113, 227, 0.33);
  animation: v4-button-glow 3.2s ease-in-out infinite;
}

.v4-body .v3-nav-button::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(0, 126, 255, 0.20);
  filter: blur(10px);
  opacity: 0.5;
}

/* TELEFON — WIĘKSZY I LEKKO 3D */

.v4-body .v3-stage {
  height: 790px;
  margin-top: 72px;
  perspective: 1600px;
}

.v4-body .v3-phone-shell {
  width: 468px;
  height: 830px;
  transform:
    translateX(-50%)
    rotateX(var(--v4-phone-x, 0deg))
    rotateY(var(--v4-phone-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.v4-body .v3-phone-bezel {
  box-shadow:
    0 85px 180px rgba(0, 0, 0, 0.76),
    0 28px 65px rgba(27, 49, 130, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.v4-body .v3-phone-bezel::after {
  content: "";
  position: absolute;
  inset: 4% -7% -5%;
  z-index: -1;
  border-radius: 76px;
  background:
    linear-gradient(
      120deg,
      rgba(128, 91, 255, 0.18),
      transparent 34%,
      rgba(76, 154, 255, 0.12)
    );
  filter: blur(28px);
}

.v4-body .v3-stage-glow {
  width: 1040px;
  height: 440px;
  background:
    radial-gradient(
      ellipse,
      rgba(137, 104, 255, 0.29) 0%,
      rgba(59, 117, 255, 0.16) 36%,
      transparent 72%
    );
  filter: blur(45px);
}

.v4-body .v3-side-card {
  background:
    linear-gradient(
      145deg,
      rgba(39, 39, 46, 0.79),
      rgba(18, 18, 22, 0.68)
    );
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.54),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

/* =========================================================
   SCROLL STORYTELLING — CAŁY EKRAN ZMIENIA FUNKCJĘ
   ========================================================= */

.v4-story {
  position: relative;
  height: 330vh;
  color: #f5f5f7;
  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(104, 80, 220, 0.16),
      transparent 29%
    ),
    #000000;
}

.v4-story-pin {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  padding:
    90px
    max(40px, calc((100% - 1260px) / 2));
  overflow: hidden;
}

.v4-story-pin::before {
  content: "";
  position: absolute;
  left: 58%;
  top: 50%;
  width: 720px;
  height: 720px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(120, 91, 255, 0.19),
      rgba(61, 104, 255, 0.08) 39%,
      transparent 69%
    );
  filter: blur(28px);
}

.v4-story-copy {
  position: relative;
  z-index: 4;
}

.v4-story-kicker {
  margin: 0 0 17px;
  color: #2997ff;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.15em;
}

.v4-story-copy h2 {
  margin: 0;
  font-size: clamp(59px, 6.8vw, 98px);
  font-weight: 660;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.v4-story-copy h2 span {
  color: transparent;
  background:
    linear-gradient(
      90deg,
      #d8cdff,
      #75baff
    );
  background-clip: text;
  -webkit-background-clip: text;
}

.v4-story-description {
  width: min(100%, 540px);
  margin: 25px 0 0;
  color: #a1a1a6;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.43;
  letter-spacing: -0.025em;
}

.v4-story-progress {
  display: flex;
  gap: 8px;
  margin-top: 36px;
}

.v4-story-progress span {
  width: 34px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  transition:
    width 450ms ease,
    background 450ms ease;
}

.v4-story-progress span.active {
  width: 76px;
  background:
    linear-gradient(
      90deg,
      #8e6cff,
      #4fa5ff
    );
}

.v4-story-device {
  position: relative;
  z-index: 4;
  height: min(760px, 82vh);
  display: grid;
  place-items: center;
  perspective: 1500px;
}

.v4-story-device-light {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 680px;
  height: 560px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse,
      rgba(122, 88, 255, 0.25),
      rgba(70, 116, 255, 0.11) 43%,
      transparent 72%
    );
  filter: blur(35px);
}

.v4-story-phone {
  position: relative;
  width: 390px;
  height: 720px;
  padding: 12px;
  border-radius: 64px;
  background:
    linear-gradient(
      160deg,
      #29292e,
      #09090c 60%
    );
  box-shadow:
    0 75px 150px rgba(0, 0, 0, 0.70),
    0 20px 55px rgba(49, 82, 180, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  transform: rotateY(-4deg) rotateX(2deg);
  transform-style: preserve-3d;
}

.v4-story-notch {
  position: absolute;
  z-index: 8;
  top: 18px;
  left: 50%;
  width: 112px;
  height: 32px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000000;
}

.v4-story-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 52px;
  color: #1d1d1f;
  background:
    linear-gradient(
      180deg,
      #fbfaff,
      #f3f1f8
    );
}

.v4-screen-state {
  position: absolute;
  inset: 0;
  padding: 68px 24px 24px;
  opacity: 0;
  transform: translateY(45px) scale(0.97);
  pointer-events: none;
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v4-screen-state.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.v4-state-top small,
.v4-state-top strong {
  display: block;
}

.v4-state-top small {
  color: #80788e;
  font-size: 12px;
}

.v4-state-top strong {
  margin-top: 5px;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.v4-huge-score,
.v4-test-number {
  margin-top: 43px;
  color: #1d1d1f;
  font-size: 86px;
  font-weight: 730;
  line-height: 0.9;
  letter-spacing: -0.085em;
}

.v4-story-bar {
  height: 11px;
  margin-top: 25px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e4e9;
}

.v4-story-bar span {
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      #835cff,
      #4c9fff
    );
}

.v4-story-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 29px;
}

.v4-story-stat-grid > div {
  padding: 17px;
  border-radius: 20px;
  background: #ffffff;
}

.v4-story-stat-grid small,
.v4-story-stat-grid strong {
  display: block;
}

.v4-story-stat-grid small {
  color: #85808e;
  font-size: 11px;
}

.v4-story-stat-grid strong {
  margin-top: 5px;
  font-size: 19px;
}

.v4-story-success {
  margin-top: 18px;
  padding: 15px;
  border-radius: 18px;
  color: #27755d;
  background: #e9f8f2;
  font-size: 13px;
  font-weight: 570;
}

.v4-story-success i {
  display: inline-grid;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #2a9b73;
  font-style: normal;
}

.v4-story-message {
  width: 84%;
  margin: 50px 0 0 auto;
  padding: 15px 17px;
  border-radius: 20px 20px 5px 20px;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      #8b64ff,
      #714ee4
    );
  font-size: 13px;
  line-height: 1.4;
}

.v4-story-warning {
  display: flex;
  gap: 13px;
  margin-top: 23px;
  padding: 18px;
  border-radius: 21px;
  background: #fff0f2;
}

.v4-story-warning > i {
  width: 29px;
  height: 29px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #ce4056;
  font-style: normal;
  font-weight: 760;
}

.v4-story-warning strong,
.v4-story-warning span {
  display: block;
}

.v4-story-warning strong {
  color: #a32138;
  font-size: 13px;
}

.v4-story-warning span {
  margin-top: 5px;
  color: #79525a;
  font-size: 11px;
  line-height: 1.4;
}

.v4-story-safety-list {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.v4-story-safety-list span {
  padding: 13px;
  border-radius: 15px;
  color: #57515f;
  background: #ffffff;
  font-size: 12px;
}

.v4-story-safety-list i {
  margin-right: 7px;
  color: #26906b;
  font-style: normal;
}

.v4-test-label {
  margin: 10px 0 0;
  color: #78717f;
  font-size: 14px;
}

.v4-test-date {
  margin-top: 35px;
  padding: 22px;
  border-radius: 22px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #7554e9,
      #407ee2
    );
  box-shadow: 0 20px 42px rgba(78, 77, 193, 0.22);
}

.v4-test-date small,
.v4-test-date strong {
  display: block;
}

.v4-test-date small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.v4-test-date strong {
  margin-top: 7px;
  font-size: 23px;
  letter-spacing: -0.045em;
}

.v4-test-flow {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.v4-test-flow span {
  padding: 13px;
  border-radius: 16px;
  background: #ffffff;
  color: #57515f;
  font-size: 12px;
}

.v4-test-flow b {
  display: inline-grid;
  width: 23px;
  height: 23px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #7554e9;
  font-size: 10px;
}

.v4-story-triggers {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  pointer-events: none;
}

.v4-story-trigger {
  min-height: 100vh;
}

/* POZOSTAŁE SEKCJE JESZCZE BARDZIEJ PRODUKTOWE */

.v4-body .v3-panel {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v4-body .v3-grid {
  padding: 8px;
  gap: 8px;
}

.v4-body .v3-tile {
  min-height: 94svh;
}

.v4-body .v3-final {
  min-height: 100svh;
}

.v4-body .v3-final-content::before {
  content: "●";
  display: block;
  margin-bottom: 24px;
  color: transparent;
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #b9a8ff,
      #79baff
    );
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 70px;
  filter:
    drop-shadow(0 0 20px rgba(153, 124, 255, 0.35))
    drop-shadow(0 0 55px rgba(75, 151, 255, 0.22));
}

/* ANIMACJE */

@keyframes v4-metal-sweep {
  0%,
  18% {
    background-position: 100% 50%;
  }

  52% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes v4-light-pass {
  0%,
  22% {
    left: -28%;
    opacity: 0;
  }

  32% {
    opacity: 0.65;
  }

  57% {
    left: 100%;
    opacity: 0;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes v4-glow-breathe {
  0%,
  100% {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0.94);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes v4-button-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.09),
      0 0 14px rgba(34, 139, 255, 0.29),
      0 9px 25px rgba(0, 113, 227, 0.29);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.13),
      0 0 27px rgba(34, 139, 255, 0.51),
      0 13px 35px rgba(0, 113, 227, 0.40);
  }
}

/* MOBILE */

@media (max-width: 900px) {
  .v4-body .v3-hero {
    min-height: 1100px;
  }

  .v4-glow-main {
    font-size: clamp(43px, 14vw, 68px);
  }

  .v4-glow-sub {
    font-size: 18px;
  }

  .v4-body .v3-stage {
    height: 590px;
  }

  .v4-body .v3-phone-shell {
    width: 330px;
    height: 590px;
    transform: translateX(-50%) !important;
  }

  .v4-story {
    height: auto;
  }

  .v4-story-pin {
    position: relative;
    height: auto;
    min-height: 0;
    display: block;
    padding: 85px 18px;
  }

  .v4-story-copy {
    text-align: center;
  }

  .v4-story-copy h2 {
    font-size: clamp(55px, 15vw, 76px);
  }

  .v4-story-description {
    margin-inline: auto;
  }

  .v4-story-progress {
    justify-content: center;
  }

  .v4-story-device {
    height: 680px;
    margin-top: 55px;
  }

  .v4-story-phone {
    width: 330px;
    height: 630px;
    transform: none;
  }

  .v4-story-triggers {
    display: none;
  }

  .v4-screen-state {
    padding-inline: 19px;
  }

  .v4-screen-state:not(:first-child) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v4-glow-main,
  .v4-glow-sub,
  .v4-glowword::before,
  .v4-glowword::after,
  .v3-nav-button {
    animation: none !important;
  }
}


/* === V4 LIVE PREMIUM === */

.v4-live-premium {
  position: relative;
  z-index: 28;
  width: min(100%, 940px);
  margin: 34px auto 0;
  padding: 1px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.22),
      rgba(163, 136, 255, 0.22) 32%,
      rgba(83, 166, 255, 0.23) 68%,
      rgba(255, 255, 255, 0.13)
    );
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.45),
    0 0 45px rgba(115, 94, 255, 0.11);
  text-align: left;
  isolation: isolate;
}

.v4-live-premium::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px;
  border-radius: 29px;
  background:
    linear-gradient(
      145deg,
      rgba(31, 31, 38, 0.89),
      rgba(12, 12, 16, 0.83)
    );
  backdrop-filter: blur(32px) saturate(170%);
  -webkit-backdrop-filter: blur(32px) saturate(170%);
}

.v4-live-aura {
  position: absolute;
  z-index: -2;
  top: -95px;
  left: 50%;
  width: 580px;
  height: 230px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse,
      rgba(145, 111, 255, 0.30),
      rgba(65, 143, 255, 0.13) 43%,
      transparent 72%
    );
  filter: blur(35px);
  animation: v4-live-aura-breathe 4.6s ease-in-out infinite;
}

.v4-live-status {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 21px 26px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.15em;
}

.v4-live-pulse {
  position: relative;
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: #55e7ac;
  box-shadow:
    0 0 10px rgba(85, 231, 172, 0.74),
    0 0 22px rgba(85, 231, 172, 0.34);
}

.v4-live-pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(85, 231, 172, 0.38);
  border-radius: 50%;
  animation: v4-live-pulse 2s ease-out infinite;
}

.v4-live-layout {
  display: grid;
  grid-template-columns: 1fr 1px 1.05fr;
  align-items: center;
  gap: 32px;
  padding: 18px 28px 27px;
}

.v4-live-number small,
.v4-live-start > small {
  display: block;
  color: rgba(255, 255, 255, 0.49);
  font-size: 11px;
  letter-spacing: 0.035em;
}

.v4-live-number-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 6px;
}

.v4-live-number-row strong {
  color: transparent;
  background:
    linear-gradient(
      105deg,
      #ffffff 0%,
      #d5c9ff 37%,
      #85bdff 72%,
      #ffffff 100%
    );
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(55px, 6vw, 78px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.075em;
  filter:
    drop-shadow(0 0 16px rgba(158, 129, 255, 0.23));
}

.v4-live-number-row span {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 17px;
  font-weight: 520;
}

.v4-live-number p {
  max-width: 380px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 12px;
  line-height: 1.45;
}

.v4-live-divider {
  width: 1px;
  height: 108px;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(255, 255, 255, 0.19),
      transparent
    );
}

.v4-live-start > strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 610;
  line-height: 1;
  letter-spacing: -0.045em;
}

.v4-live-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
}

.v4-live-countdown > div {
  min-width: 56px;
  padding: 10px 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  text-align: center;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.035)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.v4-live-countdown b,
.v4-live-countdown span {
  display: block;
}

.v4-live-countdown b {
  color: #ffffff;
  font-size: 21px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.v4-live-countdown span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  letter-spacing: 0.04em;
}

.v4-live-countdown > i {
  color: rgba(255, 255, 255, 0.28);
  font-style: normal;
  font-size: 17px;
}

.v4-live-source {
  position: fixed !important;
  left: -99999px !important;
  top: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  border: 0 !important;
}

@keyframes v4-live-aura-breathe {
  0%,
  100% {
    opacity: 0.58;
    transform: translateX(-50%) scale(0.94);
  }

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

@keyframes v4-live-pulse {
  0% {
    opacity: 0.75;
    transform: scale(0.55);
  }

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

@media (max-width: 760px) {
  .v4-live-premium {
    width: min(100%, 460px);
    border-radius: 25px;
  }

  .v4-live-premium::before {
    border-radius: 24px;
  }

  .v4-live-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 17px 19px 23px;
  }

  .v4-live-divider {
    width: 100%;
    height: 1px;
    background:
      linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.18),
        transparent
      );
  }

  .v4-live-status {
    padding-inline: 19px;
  }

  .v4-live-countdown {
    justify-content: space-between;
    gap: 4px;
  }

  .v4-live-countdown > div {
    min-width: 51px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v4-live-aura,
  .v4-live-pulse::after {
    animation: none !important;
  }
}


/* === V4 LIVE SIGNAL PREMIUM === */

.v4-live-signal {
  margin-top: 18px;
}

.v4-live-signal-track {
  position: relative;
  height: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.02)
    );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 24px rgba(92, 118, 255, 0.10);
}

.v4-live-signal-track > span {
  position: absolute;
  inset: 1px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(137,111,255,0.92) 0%,
      rgba(112,145,255,0.96) 50%,
      rgba(113,214,255,0.92) 100%
    );
  box-shadow:
    0 0 18px rgba(124,126,255,0.28),
    0 0 40px rgba(77,155,255,0.18);
}

.v4-live-signal-track::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 24%;
  height: 160%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.72),
      transparent
    );
  transform: skewX(-22deg);
  filter: blur(2px);
  animation: v4-live-signal-sweep 2.8s ease-in-out infinite;
  opacity: 0.9;
}

.v4-live-signal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.v4-live-signal-meta em {
  color: rgba(255,255,255,0.42);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.03em;
}

.v4-live-signal-meta strong {
  color: rgba(255,255,255,0.72);
  font-size: 10px;
  font-weight: 560;
  letter-spacing: 0.02em;
}

@keyframes v4-live-signal-sweep {
  0% {
    left: -26%;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  55% {
    left: 102%;
    opacity: 1;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}

/* LIVE PROGRESS V2 CSS */

.live-progress-v2 {
  position: relative;
  margin-top: 19px;
}

.live-progress-v2-head,
.live-progress-v2-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.live-progress-v2-head {
  margin-bottom: 10px;
}

.live-progress-v2-head > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.48);
  font-size: 10px;
  letter-spacing: 0.03em;
}

.live-progress-v2-head > span > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #61e6b2;
  box-shadow:
    0 0 8px rgba(97,230,178,0.75),
    0 0 18px rgba(97,230,178,0.34);
  animation: live-dot-v2 2s ease-in-out infinite;
}

.live-progress-v2-head > strong {
  color: rgba(255,255,255,0.82);
  font-size: 10px;
  font-weight: 580;
  letter-spacing: 0.025em;
}

.live-progress-v2-track {
  --progress: 90.75%;

  position: relative;
  height: 13px;
  padding: 2px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.07),
      rgba(255,255,255,0.025)
    );
  box-shadow:
    inset 0 1px 2px rgba(0,0,0,0.44),
    0 0 28px rgba(102,112,255,0.10);
}

.live-progress-v2-track > span {
  position: relative;
  z-index: 2;
  display: block;
  width: var(--progress);
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      #896cff 0%,
      #728dff 48%,
      #58c8ff 100%
    );
  box-shadow:
    0 0 13px rgba(126,105,255,0.55),
    0 0 28px rgba(72,159,255,0.26);
  transition:
    width 900ms cubic-bezier(0.22,1,0.36,1);
}

.live-progress-v2-track > span::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.40),
      transparent 52%
    );
}

.live-progress-v2-track > b {
  position: absolute;
  z-index: 3;
  top: -40%;
  left: -22%;
  width: 24%;
  height: 180%;
  transform: skewX(-22deg);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.82),
      transparent
    );
  filter: blur(2px);
  animation: live-sweep-v2 3s ease-in-out infinite;
}

.live-progress-v2-foot {
  margin-top: 9px;
}

.live-progress-v2-foot > span {
  color: rgba(255,255,255,0.42);
  font-size: 9px;
}

.live-progress-v2-foot > strong {
  color: rgba(255,255,255,0.70);
  font-size: 9px;
  font-weight: 570;
}

@keyframes live-sweep-v2 {
  0% {
    left: -25%;
    opacity: 0;
  }

  16% {
    opacity: 1;
  }

  58% {
    left: 105%;
    opacity: 0.95;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}

@keyframes live-dot-v2 {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.82);
  }

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

@media (max-width: 620px) {
  .live-progress-v2-head,
  .live-progress-v2-foot {
    align-items: flex-start;
  }
}

/* FINAL SAFETY TILE FIX V1 */

/*
  Desktop: treść sekcji ma własną przestrzeń,
  a telefon zaczyna się dopiero pod opisem.
*/

@media (min-width: 901px) {
  .v3-tile-dark {
    min-height: 900px !important;
  }

  .v3-tile-dark .v3-tile-copy {
    position: relative !important;
    z-index: 8 !important;
    width: min(100%, 520px) !important;
    margin-inline: auto !important;
  }

  .v3-tile-dark .v3-tile-copy h2 {
    position: relative !important;
    z-index: 8 !important;
  }

  .v3-tile-dark .v3-tile-copy > span {
    position: relative !important;
    z-index: 8 !important;

    width: min(100%, 470px) !important;
    margin: 18px auto 0 !important;

    color: rgba(245, 245, 247, 0.67) !important;
    line-height: 1.42 !important;
  }

  .v3-warning-phone {
    top: 350px !important;
    bottom: auto !important;

    width: 350px !important;
    height: 525px !important;

    z-index: 3 !important;

    transform: translateX(-50%) !important;
  }

  .v3-warning-screen {
    padding-top: 59px !important;
  }

  .v3-warning-screen > strong {
    width: 100% !important;
    max-width: 290px !important;
  }
}

/*
  Przy mniejszych ekranach telefon również nie może
  nachodzić na opis sekcji.
*/

@media (min-width: 621px) and (max-width: 900px) {
  .v3-tile-dark {
    min-height: 850px !important;
  }

  .v3-warning-phone {
    top: 330px !important;
    bottom: auto !important;
  }
}
