:root {
  --purple-950: #1c0c35;
  --purple-900: #2d1251;
  --purple-800: #481c82;
  --purple-700: #6128bc;
  --purple-600: #7c3aed;
  --purple-500: #9157f5;
  --purple-400: #a978fb;
  --purple-300: #c6a6ff;
  --purple-200: #dfd1ff;
  --purple-100: #f1eaff;
  --purple-50: #f8f5ff;

  --ink: #180e25;
  --ink-soft: #53495f;
  --muted: #776d82;
  --line: rgba(73, 41, 111, 0.1);
  --line-strong: rgba(124, 58, 237, 0.16);

  --green: #1b9e6d;
  --green-soft: #e8f8f1;
  --red: #c93d55;
  --red-soft: #fff0f3;
  --white: #ffffff;

  --shadow-xs: 0 8px 20px rgba(50, 25, 86, 0.055);
  --shadow-sm: 0 13px 34px rgba(50, 25, 86, 0.08);
  --shadow-md: 0 24px 60px rgba(50, 25, 86, 0.12);
  --shadow-lg: 0 38px 95px rgba(44, 19, 78, 0.18);

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 10%, rgba(193, 157, 255, 0.14), transparent 25rem),
    radial-gradient(circle at 92% 32%, rgba(124, 58, 237, 0.08), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #fcfbff 48%, #ffffff 100%);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--purple-600);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

.ambient {
  position: fixed;
  z-index: -3;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(85px);
}

.ambient-a {
  top: 8rem;
  left: -10rem;
  width: 25rem;
  height: 25rem;
  background: rgba(182, 139, 255, 0.12);
}

.ambient-b {
  top: 48rem;
  right: -12rem;
  width: 30rem;
  height: 30rem;
  background: rgba(124, 58, 237, 0.07);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 100;
  width: min(calc(100% - 28px), 1212px);
  margin: 10px auto 0;
}

.topbar-inner {
  min-height: 70px;
  padding: 0 12px 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 36px rgba(50, 25, 86, 0.08);
  backdrop-filter: blur(25px) saturate(165%);
  -webkit-backdrop-filter: blur(25px) saturate(165%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.75px;
}

.brand-mark {
  width: 11px;
  height: 11px;
  flex: none;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--purple-500), var(--purple-700));
  box-shadow: 0 7px 16px rgba(124, 58, 237, 0.34);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.desktop-nav a {
  padding: 10px 12px;
  border-radius: 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
  background: var(--purple-50);
}

.topbar-cta {
  justify-self: end;
  padding: 12px 17px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(145deg, var(--purple-500), var(--purple-700));
  box-shadow: 0 12px 27px rgba(124, 58, 237, 0.24);
  font-size: 12px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.topbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(124, 58, 237, 0.29);
}

.hero {
  min-height: 790px;
  padding: 88px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
  align-items: center;
  gap: 82px;
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple-700);
  font-size: 10px;
  font-weight: 920;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(27, 158, 109, 0.1);
  animation: livePulse 2.2s ease-in-out infinite;
}

.eyebrow-divider {
  width: 1px;
  height: 12px;
  margin-inline: 2px;
  background: rgba(124, 58, 237, 0.18);
}

@keyframes livePulse {
  50% {
    box-shadow: 0 0 0 10px rgba(27, 158, 109, 0);
  }
}

.hero h1 {
  max-width: 720px;
  margin: 21px 0 0;
  font-size: clamp(49px, 6.1vw, 77px);
  line-height: 0.975;
  font-weight: 950;
  letter-spacing: -4.2px;
}

.hero h1 span {
  display: block;
  color: var(--purple-600);
}

.hero-lead {
  max-width: 635px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 520;
}

.hero-actions {
  margin-top: 33px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 890;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    border-color 170ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(145deg, var(--purple-500), var(--purple-700));
  box-shadow: 0 16px 37px rgba(124, 58, 237, 0.25);
}

.button-primary:hover {
  box-shadow: 0 22px 45px rgba(124, 58, 237, 0.31);
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(18px);
}

.signup-progress {
  max-width: 610px;
  margin-top: 35px;
  padding: 17px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(18px);
}

.signup-progress-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.signup-progress-count {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.signup-progress-count strong {
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -1.3px;
}

.signup-progress-count span,
.signup-progress-head > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 730;
}

.signup-progress-head > span {
  max-width: 260px;
  text-align: right;
}

.signup-progress-track {
  height: 8px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--purple-100);
}

.signup-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
  transition: width 700ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.test-countdown {
  margin-top: 16px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(124, 58, 237, 0.17);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.07), rgba(255, 255, 255, 0.9));
  box-shadow: 0 14px 34px rgba(64, 38, 95, 0.07);
}

.test-countdown-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7138d4;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.test-countdown-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b5cf6;
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.11);
  animation: countdown-pulse 2s ease-in-out infinite;
}

.test-countdown-copy > strong {
  display: block;
  margin-top: 7px;
  color: #24172e;
  font-size: 18px;
  letter-spacing: -0.4px;
}

.test-countdown-copy p {
  max-width: 560px;
  margin: 5px 0 0;
  color: #71697a;
  font-size: 12px;
  line-height: 1.5;
}

.countdown-units {
  display: grid;
  grid-template-columns: repeat(4, 58px);
  gap: 7px;
}

.countdown-units > span {
  min-height: 58px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
}

.countdown-units b {
  color: #2a1936;
  font-size: 20px;
  line-height: 1;
}

.countdown-units small {
  margin-top: 5px;
  color: #8a8192;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.test-countdown.is-running .test-countdown-kicker {
  color: #15805c;
}

.test-countdown.is-running .test-countdown-kicker i {
  background: #22c58b;
  box-shadow: 0 0 0 6px rgba(34, 197, 139, 0.12);
}

.test-countdown.is-finished .countdown-units {
  display: none;
}

@keyframes countdown-pulse {
  0%, 100% { transform: scale(0.85); opacity: 0.65; }
  50% { transform: scale(1); opacity: 1; }
}

.hero-assurances {
  margin-top: 23px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.hero-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 740;
}

.hero-assurances i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 9px;
  font-style: normal;
  font-weight: 950;
}

.hero-visual {
  position: relative;
  min-height: 655px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -3;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(157, 99, 255, 0.24), rgba(124, 58, 237, 0.05) 56%, transparent 72%);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 999px;
  animation: orbit 24s linear infinite;
}

.orbit-one {
  width: 520px;
  height: 520px;
}

.orbit-two {
  width: 600px;
  height: 600px;
  animation-direction: reverse;
  animation-duration: 32s;
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

.phone {
  position: relative;
  z-index: 4;
  width: 312px;
  height: 630px;
  transform: perspective(1100px) rotateY(-6deg) rotateX(2deg);
  filter: drop-shadow(0 46px 68px rgba(46, 22, 82, 0.24));
}

.phone-shell {
  position: absolute;
  inset: 0;
  padding: 9px;
  border-radius: 52px;
  background: linear-gradient(145deg, #1b1920, #403b47 48%, #111014);
  box-shadow:
    0 0 0 2px #5b5561 inset,
    0 0 0 5px #09080b inset;
}

.phone-island {
  position: absolute;
  z-index: 20;
  top: 19px;
  left: 50%;
  width: 98px;
  height: 28px;
  border-radius: 999px;
  background: #08070a;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 56px 17px 72px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 80% 6%, rgba(230, 218, 255, 0.91), transparent 36%),
    linear-gradient(180deg, #fbf9ff 0%, #f2ecff 100%);
}

.phone-status {
  position: absolute;
  top: 19px;
  left: 20px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  color: #21152f;
  font-size: 9px;
  font-weight: 850;
}

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

.app-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -0.45px;
}

.app-brand span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--purple-600);
}

.app-avatar {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--purple-900);
  background: var(--purple-200);
  font-size: 8px;
  font-weight: 900;
}

.app-search {
  height: 39px;
  margin-top: 16px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 13px;
  color: #645873;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 18px rgba(63, 34, 101, 0.05);
  font-size: 10px;
  font-weight: 710;
}

.product-card,
.seller-card {
  border: 1px solid rgba(124, 58, 237, 0.08);
  background: rgba(255, 255, 255, 0.81);
  box-shadow: 0 12px 25px rgba(63, 34, 101, 0.075);
}

.product-card {
  position: relative;
  margin-top: 14px;
  padding: 11px;
  display: flex;
  gap: 11px;
  border-radius: 17px;
}

.product-photo {
  width: 67px;
  height: 78px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #eee4ff, #c7a7ff 55%, #8144ed);
}

.hoodie {
  position: relative;
  width: 41px;
  height: 46px;
  border-radius: 13px 13px 15px 15px;
  background: linear-gradient(180deg, #56328b, #261734);
  box-shadow: 0 9px 19px rgba(37, 21, 54, 0.28);
}

.hoodie::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 8px;
  width: 25px;
  height: 18px;
  border-radius: 13px 13px 8px 8px;
  background: #3c2361;
}

.hoodie::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 9px;
  height: 8px;
  border-radius: 999px;
  background: #1b1225;
}

.product-info {
  min-width: 0;
}

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

.product-info strong {
  font-size: 11px;
}

.product-info span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
}

.product-info b {
  margin-top: 10px;
  color: var(--purple-800);
  font-size: 15px;
}

.product-card button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  color: var(--purple-700);
  background: var(--purple-50);
  font-size: 13px;
}

.seller-card {
  margin-top: 13px;
  padding: 13px;
  border-radius: 18px;
}

.seller-head {
  display: flex;
  align-items: center;
  gap: 9px;
}

.seller-avatar {
  width: 37px;
  height: 37px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--purple-900);
  background: linear-gradient(145deg, #dccbff, #9f6aff);
  font-size: 10px;
  font-weight: 950;
}

.seller-head > div:nth-child(2) {
  min-width: 0;
  flex: 1;
}

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

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

.seller-head span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 7px;
}

.seller-head > b {
  color: var(--purple-700);
  font-size: 8px;
}

.seller-stats {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.seller-stats div {
  padding: 8px 4px;
  text-align: center;
  border-radius: 11px;
  background: var(--purple-50);
}

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

.seller-stats strong {
  font-size: 10px;
}

.seller-stats span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 6px;
}

.safe-offer {
  margin-top: 13px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(27, 158, 109, 0.12);
  border-radius: 15px;
  background: rgba(232, 248, 241, 0.82);
}

.safe-icon {
  width: 28px;
  height: 28px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--green);
  background: var(--white);
  font-size: 11px;
  font-weight: 950;
}

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

.safe-offer strong {
  color: #176f50;
  font-size: 9px;
}

.safe-offer span {
  margin-top: 3px;
  color: #57816f;
  font-size: 7px;
}

.app-bottom-nav {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border: 1px solid rgba(124, 58, 237, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 9px 21px rgba(63, 34, 101, 0.07);
}

.app-bottom-nav span {
  display: grid;
  justify-items: center;
  gap: 2px;
  color: #958a9f;
  font-size: 12px;
}

.app-bottom-nav span.active {
  color: var(--purple-700);
}

.app-bottom-nav small {
  font-size: 5px;
  font-weight: 760;
}

.floating-metric {
  position: absolute;
  z-index: 6;
  width: 178px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.83);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(24px) saturate(165%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
  animation: floatMetric 5.1s ease-in-out infinite;
}

.floating-metric-trust {
  top: 120px;
  left: -14px;
}

.floating-metric-deal {
  right: -18px;
  bottom: 114px;
  animation-direction: reverse;
  animation-duration: 5.7s;
}

@keyframes floatMetric {
  50% {
    transform: translateY(-11px);
  }
}

.metric-label {
  color: var(--purple-700);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.metric-value {
  margin-top: 7px;
  font-size: 31px;
  font-weight: 950;
  letter-spacing: -1.4px;
}

.metric-bar {
  height: 6px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--purple-100);
}

.metric-bar span {
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
}

.metric-caption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 8px;
}

.metric-prices {
  margin-top: 9px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.metric-prices del {
  color: var(--muted);
  font-size: 10px;
}

.metric-prices strong {
  font-size: 22px;
  letter-spacing: -0.7px;
}

.metric-success {
  margin-top: 8px;
  padding: 7px 8px;
  border-radius: 9px;
  color: #176f50;
  background: var(--green-soft);
  font-size: 7px;
  font-weight: 850;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
}

.trust-strip-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trust-strip-inner > div:first-child strong,
.trust-strip-inner > div:first-child span {
  display: block;
}

.trust-strip-inner > div:first-child strong {
  font-size: 13px;
}

.trust-strip-inner > div:first-child span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.trust-strip-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.trust-strip-items span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--white);
  font-size: 9px;
  font-weight: 760;
}

.creator-section {
  padding-top: 72px;
  scroll-margin-top: 105px;
}

.creator-card {
  padding: 32px 34px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff, #f8f4ff);
  box-shadow: var(--shadow-sm);
}

.creator-avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(145deg, var(--purple-500), var(--purple-700));
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.22);
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -1px;
}

.creator-copy {
  min-width: 0;
}

.creator-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -1.7px;
}

.creator-copy p {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.creator-contact {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple-700);
  font-size: 11px;
  font-weight: 850;
}

.creator-contact span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--purple-700);
  background: var(--purple-100);
  font-size: 10px;
}

.creator-facts {
  min-width: 220px;
  display: grid;
  gap: 10px;
}

.creator-facts span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 760;
}

.creator-facts i {
  width: 20px;
  height: 20px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 9px;
  font-style: normal;
  font-weight: 950;
}

.section {
  padding-top: 112px;
}

.section-heading {
  max-width: 800px;
}

.section-heading h2 {
  margin: 15px 0 0;
  font-size: clamp(37px, 5vw, 58px);
  line-height: 1.015;
  font-weight: 950;
  letter-spacing: -2.7px;
}

.section-heading p {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  margin: 0 0 5px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.centered p {
  margin-inline: auto;
}

.compact {
  max-width: 720px;
}

.problem-grid {
  margin-top: 43px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.problem-card {
  position: relative;
  min-height: 336px;
  padding: 27px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(210, 189, 255, 0.22), transparent 13rem),
    rgba(255, 255, 255, 0.79);
  box-shadow: var(--shadow-xs);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.problem-card.featured {
  background:
    radial-gradient(circle at 92% 3%, rgba(255, 255, 255, 0.2), transparent 13rem),
    linear-gradient(145deg, #8e53ee, #5e25b6);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 26px 59px rgba(94, 37, 182, 0.23);
}

.card-number {
  position: absolute;
  top: 23px;
  right: 24px;
  color: rgba(62, 35, 88, 0.25);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.featured .card-number {
  color: rgba(255, 255, 255, 0.43);
}

.card-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--purple-700);
  background: var(--purple-100);
  font-size: 21px;
  font-weight: 900;
}

.featured .card-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.problem-card h3 {
  margin: auto 0 0;
  padding-top: 45px;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.9px;
}

.problem-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.62;
}

.featured p {
  color: #eee4ff;
}

.section-soft {
  margin-top: 112px;
  padding: 103px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(194, 161, 255, 0.22), transparent 26rem),
    linear-gradient(180deg, #faf8ff, #f5f0ff);
  border-block: 1px solid rgba(124, 58, 237, 0.07);
}

.steps {
  margin-top: 47px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.step-card {
  min-height: 245px;
  padding: 25px;
  border: 1px solid rgba(124, 58, 237, 0.11);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-xs);
}

.step-top {
  display: flex;
  align-items: center;
}

.step-top span {
  width: 38px;
  height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(145deg, var(--purple-500), var(--purple-700));
  box-shadow: 0 11px 24px rgba(124, 58, 237, 0.22);
  font-size: 11px;
  font-weight: 900;
}

.step-top i {
  width: calc(100% + 34px);
  height: 1px;
  margin-left: 13px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.23), transparent);
}

.step-card h3 {
  margin: 33px 0 0;
  font-size: 21px;
  letter-spacing: -0.55px;
}

.step-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.62;
}

.tester-note {
  max-width: 850px;
  margin: 25px auto 0;
  padding: 17px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.tester-note-icon {
  width: 28px;
  height: 28px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--purple-600);
  font-size: 11px;
  font-weight: 900;
}

.tester-note strong,
.tester-note span {
  display: block;
}

.tester-note strong {
  font-size: 11px;
}

.tester-note span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.feature-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 138px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.77);
  box-shadow: var(--shadow-xs);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--purple-700);
  background: var(--purple-100);
  font-size: 17px;
  font-weight: 900;
}

.feature-card strong {
  display: block;
  font-size: 13px;
}

.feature-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.signup-section {
  padding-bottom: 10px;
}

.signup-panel {
  padding: 52px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 55px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 5% 7%, rgba(195, 161, 255, 0.22), transparent 24rem),
    linear-gradient(145deg, #ffffff, #f8f4ff);
  box-shadow: var(--shadow-md);
}

.signup-panel-copy {
  position: sticky;
  top: 110px;
}

.signup-panel-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(39px, 4.7vw, 56px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -2.7px;
}

.signup-panel-copy > p {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.68;
}

.signup-benefits {
  margin-top: 31px;
  display: grid;
  gap: 14px;
}

.signup-benefits > div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.signup-benefits > div > span {
  width: 26px;
  height: 26px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 10px;
  font-weight: 950;
}

.signup-benefits p {
  margin: 0;
}

.signup-benefits strong,
.signup-benefits small {
  display: block;
}

.signup-benefits strong {
  font-size: 11px;
}

.signup-benefits small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.signup-form {
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.demo-notice {
  margin-bottom: 21px;
  padding: 14px 15px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 14px;
  color: #57436f;
  background: var(--purple-50);
  font-size: 10px;
  line-height: 1.45;
}

.demo-notice strong {
  display: block;
  margin-bottom: 3px;
  color: var(--purple-700);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: block;
}

.field + .field,
.role-fieldset + .field {
  margin-top: 0;
}

.field > span,
.role-fieldset legend {
  display: block;
  margin-bottom: 9px;
  color: #332741;
  font-size: 11px;
  font-weight: 860;
}

.field input,
.field select {
  width: 100%;
  height: 49px;
  padding: 0 14px;
  outline: 0;
  border: 1px solid rgba(70, 39, 108, 0.12);
  border-radius: 14px;
  color: var(--ink);
  background: #fcfbff;
  font-size: 12px;
  transition:
    border-color 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

.field input::placeholder {
  color: #aaa0b2;
}

.field input:focus,
.field select:focus {
  border-color: rgba(124, 58, 237, 0.46);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.085);
}

.field input.invalid,
.field select.invalid {
  border-color: rgba(201, 61, 85, 0.48);
  background: var(--red-soft);
}

.field > small,
.group-error {
  min-height: 16px;
  display: block;
  margin-top: 6px;
  color: var(--red);
  font-size: 9px;
  font-weight: 750;
}

.role-fieldset {
  min-width: 0;
  margin: 23px 0;
  padding: 0;
  border: 0;
}

.role-explanation {
  margin-bottom: 13px;
  padding: 14px 15px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(248, 245, 255, 0.98), rgba(241, 234, 255, 0.83));
}

.role-explanation-icon {
  width: 27px;
  height: 27px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--white);
  background: linear-gradient(145deg, var(--purple-500), var(--purple-700));
  font-size: 11px;
  font-weight: 950;
}

.role-explanation strong {
  display: block;
  color: #3b2558;
  font-size: 10px;
}

.role-explanation p {
  margin: 4px 0 0;
  color: #6d607a;
  font-size: 9px;
  line-height: 1.5;
}

.role-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.role-option {
  position: relative;
  min-height: 136px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 1px solid rgba(70, 39, 108, 0.11);
  border-radius: 17px;
  background: #fcfbff;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background 170ms ease,
    box-shadow 170ms ease;
}

.role-option:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, 0.24);
  box-shadow: var(--shadow-xs);
}

.role-option:has(input:checked) {
  border-color: rgba(124, 58, 237, 0.44);
  background: var(--purple-50);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.065);
}

.role-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.role-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--purple-700);
  background: var(--purple-100);
  font-size: 15px;
  font-weight: 950;
}

.role-option strong {
  margin-top: 14px;
  font-size: 12px;
}

.role-option small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.38;
}

.consent {
  margin-top: 21px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex: none;
  accent-color: var(--purple-600);
}

.consent span {
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.52;
}

.consent-error {
  margin-left: 28px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-button {
  width: 100%;
  height: 52px;
  margin-top: 14px;
  border: 0;
  border-radius: 15px;
  color: var(--white);
  cursor: pointer;
  background: linear-gradient(145deg, var(--purple-500), var(--purple-700));
  box-shadow: 0 16px 35px rgba(124, 58, 237, 0.24);
  font-size: 12px;
  font-weight: 900;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    opacity 170ms ease;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(124, 58, 237, 0.29);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.submit-button i {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spinner 0.75s linear infinite;
}

.submit-button.loading span {
  display: none;
}

.submit-button.loading i {
  display: inline-block;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.form-footnote {
  margin: 12px auto 0;
  max-width: 510px;
  color: var(--muted);
  text-align: center;
  font-size: 8px;
  line-height: 1.45;
}

.form-message {
  display: none;
  margin-top: 15px;
  padding: 14px;
  border-radius: 14px;
  font-size: 10px;
  line-height: 1.46;
  font-weight: 700;
}

.form-message.show {
  display: block;
}

.form-message.success {
  color: #176f50;
  background: var(--green-soft);
  border: 1px solid rgba(27, 158, 109, 0.13);
}

.form-message.error {
  color: #982b3d;
  background: var(--red-soft);
  border: 1px solid rgba(201, 61, 85, 0.13);
}

.form-message.info {
  color: #5c437c;
  background: var(--purple-50);
  border: 1px solid rgba(124, 58, 237, 0.13);
}

.faq-section {
  padding-bottom: 108px;
}

.faq-list {
  max-width: 900px;
  margin: 39px auto 0;
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.79);
  box-shadow: var(--shadow-xs);
}

.faq-list summary {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 860;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 27px;
  height: 27px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--purple-700);
  background: var(--purple-100);
  font-size: 16px;
  transition: transform 170ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  max-width: 760px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.footer-inner {
  min-height: 110px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer p,
.footer-inner > span {
  color: var(--muted);
  font-size: 9px;
}

.footer p {
  text-align: center;
}

.footer-inner > span {
  text-align: right;
}

@media (max-width: 1050px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 72px;
  }

  .hero-copy {
    max-width: 810px;
  }

  .hero-visual {
    min-height: 690px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .split-heading > p {
    margin: 0;
  }

  .signup-panel {
    grid-template-columns: 1fr;
  }

  .signup-panel-copy {
    position: static;
    max-width: 730px;
  }
}

@media (max-width: 800px) {
  body,
  main,
  .hero,
  .hero-copy,
  .hero-visual,
  .signup-panel,
  .signup-form {
    max-width: 100%;
    min-width: 0;
  }

  .ambient,
  .hero-orbit {
    display: none;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar {
    width: min(calc(100% - 18px), 1212px);
    top: 7px;
    margin-top: 7px;
  }

  .topbar-inner {
    min-height: 62px;
  }

  .topbar-cta {
    padding: 10px 13px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 56px;
  }

  .hero h1 {
    font-size: clamp(43px, 12.6vw, 61px);
    letter-spacing: -3.2px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .signup-progress-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .signup-progress-head > span {
    max-width: none;
    text-align: left;
  }

  .hero-visual {
    min-height: 625px;
    width: 100%;
    margin: 18px 0 0;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(248, 245, 255, 0.82), rgba(255, 255, 255, 0.96));
    transform: none;
  }

  .hero-visual::before {
    width: min(430px, 100%);
    height: 430px;
  }

  .phone {
    transform: none;
    filter: drop-shadow(0 28px 42px rgba(46, 22, 82, 0.18));
  }

  .floating-metric {
    animation: none;
  }

  .floating-metric-trust {
    left: 16px;
  }

  .floating-metric-deal {
    right: 16px;
  }

  .trust-strip-inner {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip-items {
    justify-content: flex-start;
  }

  .problem-grid,
  .steps,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .step-top i {
    display: none;
  }

  .signup-panel {
    padding: 34px 23px;
  }

  .form-row,
  .role-options {
    grid-template-columns: 1fr;
  }

  .role-option {
    width: 100%;
    min-width: 0;
    min-height: 105px;
  }

  .creator-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .creator-facts {
    min-width: 0;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer p,
  .footer-inner > span {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-assurances {
    display: grid;
  }

  .hero-visual {
    min-height: 620px;
    margin: 12px 0 0;
    border-radius: 24px;
    transform: none;
  }

  .hero-visual::before {
    width: 330px;
    height: 330px;
  }

  .phone {
    width: min(292px, calc(100% - 42px));
    height: auto;
    aspect-ratio: 312 / 630;
  }

  .floating-metric {
    width: 140px;
    padding: 11px;
    border-radius: 16px;
  }

  .floating-metric-trust {
    top: 105px;
    left: 7px;
  }

  .floating-metric-deal {
    right: 7px;
    bottom: 86px;
  }

  .metric-value {
    font-size: 25px;
  }

  .metric-prices strong {
    font-size: 18px;
  }

  .section {
    padding-top: 82px;
  }

  .section-soft {
    margin-top: 82px;
    padding: 80px 0;
  }

  .section-heading h2,
  .signup-panel-copy h2 {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .problem-card {
    min-height: 300px;
  }

  .signup-panel {
    padding: 25px 15px;
    border-radius: 25px;
  }

  .signup-form {
    width: 100%;
    max-width: 100%;
    padding: 23px 16px;
  }

  .test-countdown {
    padding: 17px 15px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .countdown-units {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .countdown-units > span {
    min-width: 0;
    min-height: 56px;
  }

  .countdown-units b {
    font-size: 18px;
  }

  .creator-section {
    padding-top: 54px;
  }

  .creator-card {
    padding: 23px 20px;
    grid-template-columns: 1fr;
    gap: 17px;
    border-radius: 24px;
  }

  .creator-avatar {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 18px;
  }

  .creator-copy h2 {
    font-size: 30px;
    letter-spacing: -1.5px;
  }

  .creator-copy p {
    font-size: 14px;
  }

  .creator-contact {
    max-width: 100%;
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .creator-facts {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .creator-facts span {
    font-size: 13px;
  }
}

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

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


/* PRZEPLYW CEL 300 */
#signupGoal300 {
  width: min(100%, 440px);
  margin: 16px auto 0;
  padding: 17px 18px 16px;
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(167, 126, 255, 0.18), transparent 46%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(58, 30, 93, 0.10);
  text-align: left;
}

.signup-goal-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.signup-goal-label {
  display: block;
  margin-bottom: 5px;
  color: #776d80;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signup-goal-number {
  color: #261b31;
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.signup-goal-remaining {
  max-width: 150px;
  color: #6d35d4;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
  text-align: right;
}

.signup-goal-track {
  height: 9px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #ece6f4;
}

.signup-goal-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6d35d4, #a779ff);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.35);
  transition: width 700ms cubic-bezier(.2, .8, .2, 1);
}

.signup-goal-bottom {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 9px;
  color: #8a8191;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 520px) {
  #signupGoal300 {
    padding: 15px;
  }

  .signup-goal-number {
    font-size: 24px;
  }

  .signup-goal-remaining {
    font-size: 12px;
  }
}





/* PRZEPLYW_FIX_LICZNIK_MOBILE_START */

[data-przeplyw-old-counter="true"] {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

#signupGoal300.signup-goal-standalone {
  display: block !important;
  width: min(calc(100% - 32px), 560px) !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 18px auto 22px !important;
  padding: 19px 20px 17px !important;
  border: 1px solid rgba(124, 58, 237, 0.16) !important;
  border-radius: 20px !important;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(168, 124, 255, 0.18),
      transparent 48%
    ),
    #ffffff !important;
  box-shadow:
    0 16px 42px rgba(54, 31, 84, 0.11) !important;
  overflow: hidden !important;
}

#signupGoal300.signup-goal-standalone .signup-goal-top {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

#signupGoal300.signup-goal-standalone .signup-goal-number {
  font-size: 30px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

#signupGoal300.signup-goal-standalone .signup-goal-remaining {
  max-width: 155px !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
}

#signupGoal300.signup-goal-standalone .signup-goal-track {
  height: 9px !important;
  margin-top: 16px !important;
}

#signupGoal300.signup-goal-standalone .signup-goal-bottom {
  justify-content: flex-end !important;
  margin-top: 9px !important;
}

@media (max-width: 520px) {
  #signupGoal300.signup-goal-standalone {
    width: calc(100% - 28px) !important;
    margin: 14px auto 18px !important;
    padding: 17px 17px 15px !important;
    border-radius: 18px !important;
  }

  #signupGoal300.signup-goal-standalone .signup-goal-top {
    gap: 12px !important;
  }

  #signupGoal300.signup-goal-standalone .signup-goal-label {
    font-size: 10px !important;
    line-height: 1.25 !important;
  }

  #signupGoal300.signup-goal-standalone .signup-goal-number {
    font-size: 27px !important;
  }

  #signupGoal300.signup-goal-standalone .signup-goal-remaining {
    max-width: 125px !important;
    font-size: 12px !important;
  }
}

/* PRZEPLYW_FIX_LICZNIK_MOBILE_END */


/* DRUGI MAIL POTWIERDZAJĄCY — 14.07.2026 */
.confirmation-email-status {
  display: none;
  margin: 14px 0 18px;
  padding: 13px 15px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}

.confirmation-email-status.sent,
.confirmation-email-status.delayed {
  display: block;
}

.confirmation-email-status.sent {
  border: 1px solid rgba(16, 185, 129, 0.22);
  background: rgba(236, 253, 245, 0.95);
  color: #166534;
}

.confirmation-email-status.delayed {
  border: 1px solid rgba(245, 158, 11, 0.25);
  background: rgba(255, 251, 235, 0.96);
  color: #92400e;
}
