:root {
  --bg-0: #070019;
  --bg-1: #120035;
  --bg-2: #250064;
  --purple-300: #d8a2ff;
  --purple-400: #bb63ff;
  --purple-500: #9a31ff;
  --purple-600: #7c18f3;
  --purple-700: #5410bd;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(210, 128, 255, 0.44);
  --line-soft: rgba(208, 126, 255, 0.24);
  --glass: rgba(31, 0, 83, 0.38);
  --glass-strong: rgba(26, 0, 71, 0.58);
  --shadow: 0 0 42px rgba(145, 45, 255, 0.32);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
  background: var(--bg-0);
  color: var(--white);
  font-family: "Poppins", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  touch-action: manipulation;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

svg,
img {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.app-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.synar-bg,
.synar-bg > * {
  position: fixed;
  pointer-events: none;
}

.synar-bg {
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 13%, rgba(179, 40, 255, 0.72), transparent 29%),
    radial-gradient(circle at 66% 34%, rgba(121, 33, 255, 0.52), transparent 33%),
    radial-gradient(circle at 8% 84%, rgba(80, 0, 168, 0.7), transparent 38%),
    linear-gradient(132deg, #08001d 0%, #180044 42%, #350087 67%, #110032 100%);
  z-index: -2;
}

.bg-mist {
  inset: -12%;
  background:
    linear-gradient(115deg, transparent 0 14%, rgba(255, 255, 255, 0.06) 18%, transparent 35%),
    linear-gradient(155deg, transparent 44%, rgba(122, 44, 255, 0.22) 62%, transparent 82%);
  filter: blur(20px);
  opacity: 0.9;
  animation: synarMist 12s ease-in-out infinite alternate;
}

.bg-glow {
  border-radius: 999px;
  filter: blur(38px);
  opacity: 0.86;
}

.bg-glow-a {
  top: 0;
  right: 2vw;
  width: min(360px, 48vw);
  height: min(360px, 48vw);
  background: rgba(168, 50, 255, 0.82);
  animation: synarGlowA 8s ease-in-out infinite alternate;
}

.bg-glow-b {
  bottom: -90px;
  left: -90px;
  width: min(680px, 95vw);
  height: min(470px, 70vw);
  background: rgba(125, 36, 255, 0.5);
  animation: synarGlowB 9s ease-in-out infinite alternate;
}

.bg-hex {
  top: 5%;
  right: -58px;
  width: min(360px, 45vw);
  height: 68%;
  opacity: 0.15;
  transform: rotate(-2deg);
  background-image:
    linear-gradient(30deg, rgba(255,255,255,0.14) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.14) 87.5%, rgba(255,255,255,0.14)),
    linear-gradient(150deg, rgba(255,255,255,0.14) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.14) 87.5%, rgba(255,255,255,0.14)),
    linear-gradient(30deg, rgba(255,255,255,0.14) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.14) 87.5%, rgba(255,255,255,0.14)),
    linear-gradient(150deg, rgba(255,255,255,0.14) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.14) 87.5%, rgba(255,255,255,0.14));
  background-position: 0 0, 0 0, 42px 74px, 42px 74px;
  background-size: 84px 148px;
  animation: synarHexDrift 20s linear infinite;
}

.bg-dots {
  right: -2%;
  bottom: 4%;
  width: min(420px, 58vw);
  height: 31%;
  opacity: 0.24;
  transform: skewX(-14deg);
  background-image: radial-gradient(circle, rgba(190, 130, 255, 0.6) 0 1px, transparent 1.7px);
  background-size: 11px 11px;
  animation: synarDots 14s ease-in-out infinite alternate;
}

.bg-wave {
  left: -28%;
  bottom: -6%;
  width: 160%;
  height: 63%;
  filter:
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.52))
    drop-shadow(0 0 30px rgba(176, 83, 255, 0.82));
  animation: synarWaveMove 9s ease-in-out infinite;
}

.wave {
  fill: none;
  stroke-linecap: round;
}

.wave-soft {
  stroke: url("#synarWaveDim");
  stroke-width: 34;
  opacity: 0.5;
}

.wave-bold {
  stroke: url("#synarWave");
  stroke-width: 4.6;
  opacity: 0.95;
}

.wave-thin {
  stroke: url("#synarWave");
  stroke-width: 2.6;
  opacity: 0.75;
}

.wave-arc {
  stroke: url("#synarWaveDim");
  stroke-width: 3;
  opacity: 0.28;
}

.funnel {
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
  height: 100dvh;
  padding: max(12px, env(safe-area-inset-top)) 12px max(14px, env(safe-area-inset-bottom));
  overflow: hidden;
}

.screen {
  display: none;
  width: min(100%, 690px);
  height: calc(100dvh - max(12px, env(safe-area-inset-top)) - max(14px, env(safe-area-inset-bottom)));
  min-height: 0;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.992);
}

.screen.is-active {
  display: grid;
  animation: screenIn 0.42s var(--ease) forwards;
}

.brand {
  display: grid;
  justify-items: center;
  text-align: center;
  color: #fff;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.28)) drop-shadow(0 0 28px rgba(151, 45, 255, 0.62));
  user-select: none;
}

.brand-mark {
  width: var(--mark-size, 94px);
  height: auto;
}

.brand-name {
  margin-top: var(--brand-name-gap, 22px);
  padding-left: 0.42em;
  font-size: var(--brand-name-size, 40px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.48em;
}

.brand-subtitle {
  margin-top: var(--brand-subtitle-gap, 18px);
  padding-left: 0.5em;
  font-size: var(--brand-subtitle-size, 18px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.72em;
}

.brand-large {
  --mark-size: clamp(58px, 16vw, 86px);
  --brand-name-gap: 14px;
  --brand-subtitle-gap: 10px;
  --brand-name-size: clamp(24px, 6.8vw, 34px);
  --brand-subtitle-size: clamp(10px, 2.8vw, 14px);
  margin-top: clamp(10px, 2dvh, 28px);
  margin-bottom: clamp(22px, 4dvh, 42px);
}

.brand-compact {
  --mark-size: clamp(44px, 11vw, 64px);
  --brand-name-gap: 12px;
  --brand-subtitle-gap: 7px;
  --brand-name-size: clamp(20px, 5vw, 29px);
  --brand-subtitle-size: clamp(8px, 2vw, 11px);
  margin-top: clamp(4px, 1dvh, 16px);
}

.brand-final {
  --mark-size: clamp(70px, 17vw, 96px);
  --brand-name-gap: 22px;
  --brand-subtitle-gap: 13px;
  --brand-name-size: clamp(30px, 7.4vw, 42px);
  --brand-subtitle-size: clamp(11px, 3vw, 16px);
  margin-top: clamp(42px, 9dvh, 94px);
  margin-bottom: clamp(62px, 10dvh, 116px);
}

.glass-card {
  position: relative;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: clamp(34px, 9vw, 72px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 16%),
    linear-gradient(180deg, rgba(78, 4, 160, 0.32), rgba(13, 0, 43, 0.58));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 0 70px rgba(150, 35, 255, 0.09),
    0 0 34px rgba(145, 45, 255, 0.2);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.glass-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: min(190px, 38vw);
  height: 4px;
  border-radius: 999px;
  background: radial-gradient(circle, #fff 0 9%, #f5c5ff 10% 18%, #a629ff 42%, transparent 74%);
  filter: blur(1px) drop-shadow(0 0 13px rgba(208, 91, 255, 0.88));
  transform: translateX(-50%);
}

.intro-card {
  display: grid;
  justify-items: center;
  max-width: 590px;
  min-height: 0;
  padding: clamp(24px, 5vw, 42px) clamp(18px, 5vw, 42px) clamp(28px, 6vw, 44px);
  text-align: center;
}

.badge-icon,
.question-top-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  color: #fff;
  background: rgba(119, 16, 238, 0.16);
  clip-path: polygon(50% 0, 91% 24%, 91% 76%, 50% 100%, 9% 76%, 9% 24%);
  filter: drop-shadow(0 0 18px rgba(171, 64, 255, 0.82));
}

.badge-icon svg,
.question-top-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-card h1 {
  margin: 0;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.28);
  font-size: clamp(30px, 8.1vw, 48px);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.03em;
}

.neon-divider {
  position: relative;
  width: 132px;
  height: 3px;
  margin: 24px 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #a82dff 18%, #f6cbff 50%, #8b18ff 82%, transparent);
  box-shadow: 0 0 16px rgba(192, 72, 255, 0.86);
}

.neon-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 22px #fff, 0 0 34px rgba(185, 63, 255, 0.96);
  transform: translate(-50%, -50%);
}

.intro-card p {
  max-width: 450px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 4.45vw, 25px);
  font-weight: 400;
  line-height: 1.45;
}

.primary-button,
.submit-button,
.secondary-button {
  border: 0;
  color: #fff;
  transition: transform 0.24s var(--ease), filter 0.24s var(--ease), box-shadow 0.24s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 8vw, 56px);
  width: min(100%, 520px);
  min-height: 68px;
  padding: 16px clamp(22px, 6vw, 42px);
  border: 1px solid rgba(255, 220, 255, 0.62);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(125, 23, 246, 0.98), rgba(231, 124, 255, 0.94)),
    radial-gradient(circle at 73% 18%, rgba(255, 255, 255, 0.56), transparent 30%);
  box-shadow:
    inset 0 2px 10px rgba(255, 255, 255, 0.24),
    inset 0 -8px 26px rgba(92, 0, 207, 0.32),
    0 0 26px rgba(187, 79, 255, 0.64),
    0 18px 44px rgba(56, 0, 132, 0.42);
  font-size: clamp(22px, 5.8vw, 32px);
  font-weight: 700;
  line-height: 1;
}

.primary-button svg {
  width: clamp(28px, 7vw, 40px);
  height: clamp(28px, 7vw, 40px);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-button:hover,
.submit-button:hover,
.secondary-button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.primary-button:active,
.submit-button:active,
.secondary-button:active {
  transform: translateY(1px) scale(0.99);
}

.time-note,
.secure-note,
.almost {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
}

.time-note {
  gap: 16px;
  margin-top: 24px;
  font-size: clamp(14px, 3.7vw, 20px);
}

.time-note svg,
.secure-note svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-header {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(100%, 480px);
  margin: 18px 0 22px;
}

.step-nav {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  width: 100%;
}

.step-count {
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 500;
  text-align: center;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.3);
}

.back-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(208, 105, 255, 0.42);
  border-radius: 999px;
  background: rgba(55, 3, 126, 0.24);
  color: rgba(255, 255, 255, 0.82);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), opacity 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.back-button:hover {
  background: rgba(80, 7, 160, 0.44);
  border-color: rgba(233, 158, 255, 0.72);
}

.back-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-button[disabled] {
  visibility: hidden;
  pointer-events: none;
}

.progress-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.progress-bars span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 9px rgba(120, 31, 255, 0.28);
}

.progress-bars span.is-active {
  background: linear-gradient(90deg, #8419ff, #d782ff);
  box-shadow: 0 0 16px rgba(196, 69, 255, 0.85), inset 0 0 9px rgba(255, 255, 255, 0.22);
}

.question-card {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  align-content: start;
  min-height: 0;
  max-width: 680px;
  padding: clamp(24px, 5vw, 42px) clamp(18px, 4.5vw, 34px) clamp(22px, 5vw, 38px);
  overflow: hidden;
}

.question-card.no-icon {
  padding-top: clamp(24px, 5vw, 38px);
}

.question-card.no-icon .question-top-icon {
  display: none;
}

.question-card.no-icon {
  grid-template-rows: auto auto minmax(0, 1fr);
}

.question-top-icon {
  width: 54px;
  height: 54px;
  margin: -2px auto 16px;
}

.question-top-icon svg {
  width: 33px;
  height: 33px;
}

.question-card h2 {
  max-width: 580px;
  margin: 0 auto 10px;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
  font-size: clamp(20px, 4.7vw, 30px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.question-hint {
  margin: 0 auto clamp(16px, 3vw, 24px);
  color: rgba(226, 180, 255, 0.72);
  text-align: center;
  font-size: clamp(12px, 2.8vw, 15px);
  font-weight: 500;
}

.question-hint.is-warning {
  color: rgba(255, 226, 255, 0.98);
  text-shadow: 0 0 14px rgba(255, 107, 205, 0.84);
}

.question-card.is-warning {
  border-color: rgba(255, 186, 230, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 0 70px rgba(150, 35, 255, 0.09),
    0 0 28px rgba(255, 96, 190, 0.28);
}

.question-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(13, 0, 43, 0.86));
  border-radius: 0 0 clamp(34px, 9vw, 72px) clamp(34px, 9vw, 72px);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.22s var(--ease);
}

.question-card.has-scroll-fade::after {
  opacity: 1;
}

.option-list {
  display: grid;
  gap: 8px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(214, 125, 255, 0.65) rgba(255, 255, 255, 0.06);
}

.option-button {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr 28px;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(208, 105, 255, 0.42);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(55, 3, 126, 0.44), rgba(21, 0, 66, 0.38));
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018), 0 0 0 rgba(0, 0, 0, 0);
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}

.option-button:hover {
  border-color: rgba(233, 158, 255, 0.72);
  background: linear-gradient(180deg, rgba(80, 7, 160, 0.66), rgba(28, 0, 77, 0.58));
}

.option-button.is-selected {
  border-color: rgba(252, 202, 255, 0.9);
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(105deg, rgba(135, 15, 245, 0.95), rgba(166, 28, 255, 0.88));
  box-shadow:
    inset 0 1px 16px rgba(255, 255, 255, 0.16),
    0 0 20px rgba(183, 60, 255, 0.58);
}

.option-button svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.option-label {
  min-width: 0;
  font-size: clamp(13px, 3.2vw, 18px);
  font-weight: 500;
  line-height: 1.22;
}

.check-dot {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #7d14ed;
  background: #fff;
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}

.check-dot svg {
  width: 18px;
  height: 18px;
  stroke-width: 3.2;
}

.option-button.is-selected .check-dot {
  opacity: 1;
  transform: scale(1);
}

.question-continue {
  width: min(86%, 548px);
  margin-top: clamp(18px, 4vw, 26px);
}

.screen-final,
.screen-thanks {
  width: min(100%, 760px);
  text-align: center;
}

.screen-final {
  padding-bottom: 46px;
}

.screen-final .brand-final {
  margin-bottom: clamp(70px, 10dvh, 112px);
}

.almost {
  gap: 18px;
  margin-bottom: 20px;
  color: rgba(225, 166, 255, 0.9);
  font-size: clamp(19px, 4.3vw, 27px);
  font-weight: 700;
}

.almost-check {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(209, 93, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(184, 52, 255, 0.8);
}

.almost-check svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.screen-final h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(31px, 6.2vw, 48px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.final-copy {
  margin: 22px 0 clamp(42px, 7vw, 58px);
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 3.8vw, 25px);
  line-height: 1.45;
}

.lead-form {
  display: grid;
  gap: 24px;
  width: min(100%, 620px);
  margin: 0 auto;
}

.field {
  position: relative;
  display: grid;
}

.field-icon {
  position: absolute;
  top: 50%;
  left: 30px;
  color: rgba(173, 53, 255, 0.9);
  transform: translateY(-50%);
  pointer-events: none;
}

.field-icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.field-label {
  position: absolute;
  left: 88px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.48);
  font-family: inherit;
  font-size: clamp(19px, 4vw, 27px);
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
  transition: top 0.18s var(--ease), font-size 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease);
}

.field input:focus ~ .field-label,
.field input:not(:placeholder-shown) ~ .field-label {
  top: 16px;
  transform: translateY(0);
  font-size: 11px;
  color: rgba(200, 130, 255, 0.9);
}

.field input {
  width: 100%;
  min-height: 84px;
  padding: 28px 26px 10px 88px;
  border: 1px solid rgba(153, 39, 255, 0.82);
  border-radius: 8px;
  outline: none;
  background: rgba(38, 0, 98, 0.58);
  color: #fff;
  box-shadow: inset 0 0 18px rgba(103, 0, 205, 0.24), 0 0 9px rgba(133, 25, 255, 0.28);
  font-size: clamp(19px, 4vw, 27px);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.field input:focus {
  border-color: rgba(240, 188, 255, 0.98);
  background: rgba(48, 0, 122, 0.7);
  box-shadow: inset 0 0 18px rgba(103, 0, 205, 0.28), 0 0 22px rgba(184, 52, 255, 0.62);
}

.field.is-invalid input {
  border-color: rgba(255, 126, 193, 0.98);
  box-shadow: 0 0 20px rgba(255, 76, 166, 0.52);
}

.field-error {
  display: none;
  margin: 6px 0 0 4px;
  color: rgba(255, 226, 244, 0.96);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  text-shadow: 0 0 12px rgba(255, 76, 166, 0.58);
}

.field.is-invalid .field-error {
  display: block;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 88px;
  padding: 20px 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #8117ee, #9f22ff);
  box-shadow: inset 0 2px 12px rgba(255, 255, 255, 0.12), 0 0 22px rgba(152, 38, 255, 0.44);
  font-size: clamp(16px, 3.5vw, 25px);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.submit-button svg {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.secure-note {
  justify-content: center;
  gap: 14px;
  margin: 18px 0 48px;
  color: rgba(190, 86, 255, 0.72);
  font-size: clamp(15px, 3.5vw, 21px);
}

.secure-note svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.4;
}

.final-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  width: min(80%, 478px);
  margin: 0 auto 24px;
}

.stepper-line {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8424ff, #dd87ff);
  box-shadow: 0 0 16px rgba(194, 78, 255, 0.8);
  transform: translateY(-50%);
}

.final-stepper span {
  position: relative;
  z-index: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(105, 17, 221, 0.96);
  border: 2px solid rgba(212, 98, 255, 0.94);
  box-shadow: 0 0 19px rgba(188, 65, 255, 0.74);
}

.final-stepper svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-stepper .current::after {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 3px rgba(151, 45, 255, 0.45);
}

.final-stage {
  color: rgba(190, 86, 255, 0.84);
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 700;
}

.screen-thanks .brand-final {
  margin-bottom: clamp(44px, 7dvh, 74px);
}

.thanks-check {
  display: grid;
  place-items: center;
  width: clamp(142px, 33vw, 192px);
  height: clamp(142px, 33vw, 192px);
  margin: 0 auto clamp(34px, 6vw, 50px);
  border: 4px solid rgba(203, 73, 255, 0.94);
  border-radius: 999px;
  background: rgba(32, 0, 80, 0.16);
  box-shadow:
    inset 0 0 30px rgba(120, 29, 242, 0.36),
    0 0 31px rgba(196, 70, 255, 0.72),
    0 0 65px rgba(137, 35, 255, 0.34);
}

.thanks-check svg {
  width: 52%;
  height: 52%;
  fill: none;
  stroke: #fff;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.42));
}

.screen-thanks h2 {
  margin: 0 0 10px;
  font-size: clamp(58px, 13vw, 86px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.thanks-success,
.whatsapp-note {
  margin: 0;
  color: var(--purple-300);
  font-size: clamp(23px, 5.3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
}

.screen-thanks .neon-divider {
  margin: clamp(30px, 5vw, 38px) auto clamp(22px, 4vw, 28px);
}

.thanks-copy {
  max-width: 610px;
  margin: 0 auto clamp(28px, 4.8vw, 38px);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(21px, 4.7vw, 30px);
  line-height: 1.46;
}

.whatsapp-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: clamp(40px, 7vw, 58px);
}

.whatsapp-note svg {
  width: clamp(34px, 7vw, 48px);
  height: clamp(34px, 7vw, 48px);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(190, 86, 255, 0.6));
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  border: 1px solid rgba(169, 57, 255, 0.62);
  border-radius: 10px;
  background: rgba(22, 0, 62, 0.4);
  box-shadow: inset 0 0 28px rgba(126, 30, 255, 0.1), 0 0 20px rgba(125, 36, 255, 0.22);
}

.benefit-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 216px;
  padding: 34px 24px 28px;
}

.benefit-grid article + article {
  border-left: 1px solid rgba(191, 92, 255, 0.32);
}

.benefit-grid svg {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  fill: none;
  stroke: var(--purple-300);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 16px rgba(190, 86, 255, 0.62));
}

.benefit-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(16px, 3.4vw, 21px);
  font-weight: 800;
  line-height: 1.2;
}

.benefit-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 3.2vw, 20px);
  line-height: 1.35;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  width: min(82%, 560px);
  min-height: 94px;
  margin-top: clamp(38px, 7vw, 58px);
  padding: 18px 30px;
  border: 1px solid rgba(189, 64, 255, 0.74);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99, 10, 218, 0.92), rgba(56, 0, 134, 0.82));
  box-shadow: inset 0 0 24px rgba(179, 52, 255, 0.18), 0 0 21px rgba(151, 39, 255, 0.48);
  font-size: clamp(21px, 5vw, 32px);
  font-weight: 500;
}

.circle-arrow {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(201, 89, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(190, 86, 255, 0.68);
}

.circle-arrow svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes screenIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes synarMist {
  from { transform: translate3d(-1%, 0, 0) scale(1); }
  to { transform: translate3d(2%, -1%, 0) scale(1.04); }
}

@keyframes synarGlowA {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-9vw, 4vw, 0) scale(1.08); }
}

@keyframes synarGlowB {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(8vw, -4vw, 0) scale(1.12); }
}

@keyframes synarHexDrift {
  from { background-position: 0 0, 0 0, 42px 74px, 42px 74px; }
  to { background-position: 84px 148px, 84px 148px, 126px 222px, 126px 222px; }
}

@keyframes synarDots {
  from { opacity: 0.16; transform: translate3d(0, 0, 0) skewX(-14deg); }
  to { opacity: 0.34; transform: translate3d(-5vw, -3vw, 0) skewX(-14deg); }
}

@keyframes synarWaveMove {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(28px, -10px, 0); }
}

@media (min-width: 900px) {
  .funnel {
    min-height: 100dvh;
    padding: 42px clamp(36px, 5vw, 84px) 46px;
    align-items: center;
  }

  .screen {
    min-height: calc(100dvh - 88px);
  }

  .question-card {
    padding-left: 56px;
    padding-right: 56px;
  }
}

@media (min-width: 1024px) {
  .synar-bg {
    background:
      radial-gradient(circle at 74% 16%, rgba(179, 40, 255, 0.74), transparent 29%),
      radial-gradient(circle at 46% 42%, rgba(121, 33, 255, 0.42), transparent 32%),
      radial-gradient(circle at 8% 78%, rgba(80, 0, 168, 0.72), transparent 38%),
      linear-gradient(132deg, #08001d 0%, #160040 38%, #310082 64%, #10002f 100%);
  }

  .bg-wave {
    left: -12%;
    bottom: -12%;
    width: 124%;
    height: 70%;
  }

  .bg-hex {
    right: -18px;
    width: 31vw;
    max-width: 460px;
    opacity: 0.13;
  }

  .bg-dots {
    right: 2%;
    bottom: 8%;
    width: 36vw;
    max-width: 520px;
  }

  .screen {
    width: min(100%, 1180px);
  }

  .screen-intro {
    grid-template-columns: minmax(330px, 0.84fr) minmax(540px, 1fr);
    column-gap: clamp(44px, 7vw, 98px);
    align-items: center;
    align-content: center;
  }

  .screen-intro .brand-large {
    justify-self: end;
    margin: 0;
    --mark-size: clamp(116px, 10vw, 154px);
    --brand-name-size: clamp(48px, 4.6vw, 72px);
    --brand-subtitle-size: clamp(18px, 1.7vw, 26px);
  }

  .intro-card {
    justify-self: start;
    max-width: 610px;
    min-height: 0;
    padding: 48px 54px 42px;
  }

  .intro-card h1 {
    font-size: clamp(46px, 4.2vw, 62px);
  }

  .intro-card p {
    margin-bottom: 40px;
    font-size: clamp(22px, 2vw, 29px);
  }

  .intro-card .neon-divider {
    margin-top: 32px;
    margin-bottom: 22px;
  }

  .intro-card .primary-button {
    min-height: 82px;
    font-size: 34px;
  }

  .intro-card .time-note {
    margin-top: 28px;
    font-size: 22px;
  }

  .screen-question {
    grid-template-columns: minmax(300px, 380px) minmax(610px, 760px);
    grid-template-areas:
      "brand card"
      "steps card"
      ". cta";
    column-gap: clamp(44px, 6vw, 86px);
    row-gap: 28px;
    align-content: center;
    align-items: center;
  }

  .screen-question .brand-compact {
    grid-area: brand;
    align-self: end;
    justify-self: center;
    margin: 0;
    --mark-size: clamp(82px, 7vw, 112px);
    --brand-name-gap: 22px;
    --brand-subtitle-gap: 14px;
    --brand-name-size: clamp(36px, 3.5vw, 48px);
    --brand-subtitle-size: clamp(13px, 1.3vw, 18px);
  }

  .screen-question .step-header {
    grid-area: steps;
    align-self: start;
    width: min(100%, 360px);
    margin: 0;
  }

  .screen-question .question-card {
    grid-area: card;
    max-width: none;
    padding: 44px 48px 42px;
    border-radius: 52px;
  }

  .screen-question .question-card h2 {
    max-width: 640px;
    margin-bottom: 10px;
    font-size: clamp(34px, 3.15vw, 46px);
  }

  .screen-question .question-hint {
    margin-bottom: 26px;
    font-size: 15px;
  }

  .screen-question .option-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .screen-question .option-button {
    grid-template-columns: 42px 1fr 30px;
    min-height: 70px;
    padding: 12px 16px;
  }

  .screen-question .option-label {
    font-size: clamp(17px, 1.45vw, 22px);
  }

  .screen-question .option-button svg {
    width: 30px;
    height: 30px;
  }

  .screen-question .question-continue {
    grid-area: cta;
    justify-self: center;
    width: min(100%, 540px);
    min-height: 78px;
    margin-top: 0;
    font-size: 34px;
  }

  .screen-final {
    width: min(100%, 1130px);
    grid-template-columns: minmax(320px, 430px) minmax(560px, 650px);
    grid-template-areas:
      "brand almost"
      "brand title"
      "brand copy"
      "brand form"
      "brand stepper"
      "brand stage";
    column-gap: clamp(44px, 6vw, 96px);
    align-content: center;
    align-items: center;
    text-align: left;
  }

  .screen-final .brand-final {
    grid-area: brand;
    justify-self: center;
    margin: 0;
    --mark-size: clamp(118px, 9vw, 150px);
    --brand-name-size: clamp(48px, 4vw, 66px);
    --brand-subtitle-size: clamp(17px, 1.5vw, 24px);
  }

  .screen-final .almost {
    grid-area: almost;
    justify-self: start;
    margin-bottom: 16px;
  }

  .screen-final h2 {
    grid-area: title;
    max-width: none;
    margin: 0;
    font-size: clamp(36px, 3.4vw, 50px);
  }

  .screen-final .final-copy {
    grid-area: copy;
    margin: 18px 0 34px;
    font-size: 22px;
  }

  .screen-final .lead-form {
    grid-area: form;
    width: 100%;
    margin: 0;
    gap: 18px;
  }

  .screen-final .field input,
  .screen-final .submit-button {
    min-height: 74px;
  }

  .screen-final .submit-button {
    font-size: 20px;
  }

  .screen-final .secure-note {
    margin: 8px 0 28px;
  }

  .screen-final .final-stepper {
    grid-area: stepper;
    justify-self: center;
    width: min(78%, 420px);
    margin: 0 auto 16px;
  }

  .screen-final .final-stage {
    grid-area: stage;
    text-align: center;
  }

  .screen-thanks {
    width: min(100%, 1080px);
    align-content: center;
    grid-template-columns: minmax(320px, 0.82fr) minmax(560px, 1fr);
    grid-template-areas:
      "brand text"
      "check text"
      "title benefits"
      "success benefits"
      "divider benefits"
      "copy benefits"
      "whatsapp cta";
    column-gap: clamp(46px, 6vw, 92px);
    text-align: center;
  }

  .screen-thanks .brand-final {
    grid-area: brand;
    justify-self: center;
    margin: 0 0 30px;
    --mark-size: clamp(94px, 7vw, 128px);
    --brand-name-size: clamp(38px, 3.2vw, 54px);
    --brand-subtitle-size: clamp(14px, 1.2vw, 20px);
  }

  .thanks-check {
    grid-area: check;
    margin-bottom: 28px;
  }

  .screen-thanks h2 {
    grid-area: title;
    font-size: clamp(66px, 5.6vw, 86px);
  }

  .thanks-success {
    grid-area: success;
  }

  .screen-thanks .neon-divider {
    grid-area: divider;
  }

  .thanks-copy {
    grid-area: copy;
    font-size: 25px;
  }

  .whatsapp-note {
    grid-area: whatsapp;
    margin-bottom: 0;
  }

  .benefit-grid {
    grid-area: benefits;
    align-self: center;
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: 0;
    padding: 28px 30px;
  }

  .benefit-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(191, 92, 255, 0.32);
  }

  .secondary-button {
    grid-area: cta;
    align-self: end;
    width: 100%;
    margin-top: 28px;
  }
}

@media (min-width: 1280px) {
  .screen {
    width: min(100%, 1280px);
  }

  .screen-question {
    grid-template-columns: minmax(340px, 430px) minmax(710px, 840px);
  }

  .screen-question .question-card {
    padding: 48px 56px 46px;
  }

  .screen-question .option-list {
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .funnel {
    padding-inline: 12px;
  }

  .brand-name {
    letter-spacing: 0.39em;
    padding-left: 0.39em;
  }

  .brand-subtitle {
    letter-spacing: 0.53em;
    padding-left: 0.53em;
  }

  .intro-card {
    min-height: auto;
    padding-bottom: 28px;
  }

  .badge-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
  }

  .badge-icon svg {
    width: 40px;
    height: 40px;
  }

  .primary-button {
    min-height: 64px;
  }

  .question-card {
    border-radius: 28px;
    padding-inline: 16px;
  }

  .option-button {
    grid-template-columns: 34px 1fr 26px;
    min-height: 48px;
    padding: 8px 11px;
    border-radius: 13px;
  }

  .option-button svg {
    width: 24px;
    height: 24px;
  }

  .check-dot {
    width: 24px;
    height: 24px;
  }

  .step-header {
    width: min(100%, 380px);
    margin-bottom: 18px;
  }

  .lead-form {
    gap: 18px;
  }

  .field input,
  .submit-button {
    min-height: 64px;
  }

  .field-icon {
    left: 22px;
  }

  .field input {
    padding-left: 70px;
    font-size: 17px;
  }

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

  .benefit-grid article {
    min-height: auto;
    padding: 28px 24px;
  }

  .benefit-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(191, 92, 255, 0.32);
  }

  .secondary-button {
    width: 100%;
    min-height: 70px;
    gap: 16px;
  }

  .circle-arrow {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 380px) {
  .brand-large {
    margin-top: 8px;
    margin-bottom: 18px;
  }

  .question-card h2 {
    font-size: 21px;
  }

  .option-label {
    font-size: 13px;
  }
}

@media (max-width: 899px) {
  .funnel {
    padding: max(10px, env(safe-area-inset-top)) 10px max(12px, env(safe-area-inset-bottom));
  }

  .screen {
    height: calc(100dvh - max(10px, env(safe-area-inset-top)) - max(12px, env(safe-area-inset-bottom)));
    width: min(100%, 430px);
  }

  .screen-intro {
    align-content: center;
    row-gap: 12px;
  }

  .screen-question {
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    align-content: stretch;
    row-gap: 7px;
  }

  .screen-question .brand-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
  }

  .screen-question .brand-compact .brand-mark {
    width: 34px;
  }

  .screen-question .brand-compact .brand-name {
    margin-top: 0;
    padding-left: 0.28em;
    font-size: 17px;
    letter-spacing: 0.28em;
  }

  .screen-question .brand-compact .brand-subtitle {
    display: none;
  }

  .screen-question .step-header {
    width: min(100%, 330px);
    margin: 0 auto;
    gap: 6px;
  }

  .screen-question .step-count {
    font-size: 13px;
  }

  .screen-question .progress-bars {
    gap: 7px;
  }

  .screen-question .progress-bars span {
    height: 5px;
  }

  .screen-question .question-card {
    align-self: stretch;
    max-height: none;
    border-radius: 24px;
    padding: 14px 13px 13px;
  }

  .screen-question .question-card.no-icon {
    padding-top: 14px;
  }

  .screen-question .question-top-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 8px;
  }

  .screen-question .question-top-icon svg {
    width: 24px;
    height: 24px;
  }

  .screen-question .question-card h2 {
    max-width: 350px;
    margin-bottom: 7px;
    font-size: clamp(17px, 4.1vw, 21px);
    line-height: 1.1;
  }

  .screen-question .question-hint {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .screen-question .option-list {
    gap: 6px;
  }

  .screen-question .option-button {
    grid-template-columns: 30px 1fr 22px;
    gap: 8px;
    min-height: 44px;
    padding: 6px 8px;
    border-radius: 11px;
  }

  .screen-question .option-button svg {
    width: 19px;
    height: 19px;
  }

  .screen-question .option-label {
    font-size: clamp(11.5px, 3vw, 14px);
    line-height: 1.12;
  }

  .screen-question .check-dot {
    width: 20px;
    height: 20px;
  }

  .screen-question .check-dot svg {
    width: 13px;
    height: 13px;
  }

  .screen-question .question-continue {
    width: 100%;
    min-height: 52px;
    margin-top: 0;
    font-size: 19px;
  }

  .screen-question .question-continue svg {
    width: 25px;
    height: 25px;
  }

  .screen-final {
    align-content: center;
    padding-bottom: 0;
  }

  .brand-final,
  .screen-final .brand-final,
  .screen-thanks .brand-final {
    --mark-size: 40px;
    --brand-name-gap: 8px;
    --brand-subtitle-gap: 5px;
    --brand-name-size: 18px;
    --brand-subtitle-size: 7px;
    margin-top: 0;
    margin-bottom: 12px;
  }

  .screen-final .brand-final {
    margin-bottom: 16px;
  }

  .almost {
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .almost-check {
    width: 28px;
    height: 28px;
  }

  .almost-check svg {
    width: 18px;
    height: 18px;
  }

  .screen-final h2 {
    max-width: 340px;
    font-size: clamp(20px, 5vw, 24px);
    line-height: 1.14;
  }

  .final-copy {
    max-width: 330px;
    margin: 8px auto 14px;
    font-size: 13px;
    line-height: 1.3;
  }

  .lead-form {
    gap: 8px;
    width: min(100%, 350px);
  }

  .field input {
    min-height: 60px;
  }

  .submit-button {
    min-height: 48px;
  }

  .field-icon {
    left: 14px;
  }

  .field-icon svg {
    width: 22px;
    height: 22px;
  }

  .field input {
    padding: 22px 12px 6px 48px;
    border-radius: 7px;
    font-size: 16px;
  }

  .field-label {
    left: 48px;
    font-size: 16px;
  }

  .field input:focus ~ .field-label,
  .field input:not(:placeholder-shown) ~ .field-label {
    top: 9px;
    font-size: 10px;
  }

  .field-error {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.08;
  }

  .submit-button {
    gap: 10px;
    padding: 10px 12px;
    font-size: 15px;
    line-height: 1.15;
  }

  .question-card::after {
    border-radius: 0 0 24px 24px;
  }

  .submit-button svg {
    width: 24px;
    height: 24px;
  }

  .secure-note {
    gap: 7px;
    margin: 7px 0 12px;
    font-size: 11px;
  }

  .secure-note svg {
    width: 17px;
    height: 17px;
  }

  .final-stepper {
    width: min(70%, 270px);
    margin-bottom: 7px;
  }

  .stepper-line {
    height: 3px;
  }

  .final-stepper span {
    width: 30px;
    height: 30px;
  }

  .final-stepper svg {
    width: 18px;
    height: 18px;
  }

  .final-stepper .current::after {
    width: 17px;
    height: 17px;
  }

  .final-stage {
    font-size: 12px;
  }

  .screen-thanks {
    align-content: center;
    row-gap: 0;
  }

  .screen-thanks .brand-final {
    margin-bottom: 10px;
  }

  .thanks-check {
    width: 72px;
    height: 72px;
    margin-bottom: 10px;
    border-width: 3px;
  }

  .screen-thanks h2 {
    margin-bottom: 5px;
    font-size: clamp(36px, 9vw, 43px);
  }

  .thanks-success,
  .whatsapp-note {
    font-size: clamp(15px, 3.8vw, 18px);
    line-height: 1.15;
  }

  .screen-thanks .neon-divider {
    width: 88px;
    margin: 12px auto 10px;
  }

  .thanks-copy {
    max-width: 340px;
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.3;
  }

  .whatsapp-note {
    gap: 7px;
    margin-bottom: 12px;
  }

  .whatsapp-note svg {
    width: 22px;
    height: 22px;
  }

  .screen-thanks .benefit-grid {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .screen-thanks .benefit-grid article {
    grid-template-columns: 32px 1fr;
    column-gap: 10px;
    align-items: center;
    justify-items: start;
    min-height: auto;
    padding: 8px 12px;
    text-align: left;
  }

  .screen-thanks .benefit-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(191, 92, 255, 0.32);
  }

  .screen-thanks .benefit-grid svg {
    grid-row: 1 / span 2;
    width: 28px;
    height: 28px;
    margin-bottom: 0;
  }

  .screen-thanks .benefit-grid h3 {
    margin-bottom: 2px;
    font-size: 13px;
    line-height: 1.08;
  }

  .screen-thanks .benefit-grid p {
    font-size: 12px;
    line-height: 1.18;
  }

  .secondary-button {
    width: 100%;
    min-height: 50px;
    gap: 9px;
    margin-top: 12px;
    border-radius: 9px;
    font-size: 15px;
  }

  .circle-arrow {
    width: 31px;
    height: 31px;
  }

  .circle-arrow svg {
    width: 20px;
    height: 20px;
  }
}

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