/* [project]/src/app/globals.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
}

:root {
  --bg: #f5f6f8;
  --card-bg: #fff;
  --text: #1a1a1f;
  --text-muted: #5c5c6a;
  --accent: #7e8af7;
  --accent-hover: #6b77e6;
  --border-tile: #dbdeff;
  --radius: 14px;
  --radius-sm: 12px;
  --shadow: 0 2px 12px #0000000f;
  --shadow-focus: 0 0 0 3px #7e8af759;
  --transition: .2s ease;
  --pad-x: clamp(16px, 5vw, 32px);
  --pad-y: clamp(24px, 6vh, 48px);
  --pad-y-top: clamp(24px, 5vh, 40px);
  --container-max: min(100% - 2 * var(--pad-x), 480px);
  --container-max-wide: min(100% - 2 * var(--pad-x), 560px);
  --h1-size: clamp(26px, 5vw + 1rem, 36px);
  --h2-size: clamp(16px, 2vw + .5rem, 20px);
  --body-size: clamp(14px, 1.5vw + .25rem, 16px);
  --option-font: clamp(16px, 2vw + .25rem, 20px);
  --tile-label-font: clamp(16px, 2vw + .25rem, 20px);
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  font-family: DM Sans, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--body-size);
  background: var(--bg);
  color: var(--text);
  padding: var(--pad-y-top) var(--pad-x) var(--pad-y);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

body.funnel-paywall {
  padding: clamp(12px, 2vh, 20px) var(--pad-x) clamp(16px, 3vh, 28px);
}

.funnel-screen {
  width: 100%;
  max-width: var(--container-max);
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.funnel-screen h1 {
  font-size: var(--h1-size);
  letter-spacing: -.02em;
  margin: 0;
  padding: 0 0 clamp(12px, 2vh, 20px);
  font-weight: 700;
  line-height: 1.2;
}

.funnel-screen[data-screen="age"] h1 {
  text-align: center;
}

.funnel-screen .subtitle {
  font-size: var(--h2-size);
  color: var(--text-muted);
  margin: 0;
  padding-bottom: clamp(20px, 4vh, 28px);
  font-weight: 400;
  line-height: 1.45;
}

.funnel-options {
  flex-direction: column;
  gap: clamp(6px, 1.5vw, 10px);
  display: flex;
}

.funnel-option {
  background: var(--card-bg);
  border-radius: var(--radius);
  width: 100%;
  font-size: var(--option-font);
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  text-align: left;
  box-shadow: var(--shadow);
  border: 2px solid #0000;
  justify-content: space-between;
  align-items: center;
  padding: clamp(12px, 2.5vw, 18px) clamp(16px, 3vw, 24px);
  font-family: inherit;
  font-weight: 600;
  display: flex;
}

.funnel-option:hover {
  border-color: #7e8af766;
}

.funnel-option:focus-visible {
  border-color: var(--accent);
  box-shadow: var(--shadow-focus);
  outline: none;
}

.funnel-option.selected {
  border-color: var(--accent);
  box-shadow: var(--shadow-focus);
}

.funnel-option .label {
  flex: 1;
}

.funnel-option .icon {
  object-fit: contain;
  flex-shrink: 0;
  width: clamp(24px, 6vw, 32px);
  height: clamp(24px, 6vw, 32px);
  margin-left: 12px;
}

.funnel-options-tiles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 2vw, 12px);
  width: 100%;
  min-width: 0;
  margin-top: clamp(16px, 3vh, 22px);
  display: grid;
}

.funnel-option-tile {
  background: var(--card-bg);
  border: 2px solid var(--border-tile);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  text-align: center;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  min-height: 0;
  font-family: inherit;
  display: flex;
  overflow: hidden;
}

.funnel-option-tile:hover {
  border-color: #7e8af780;
}

.funnel-option-tile:focus-visible {
  border-color: var(--accent);
  box-shadow: var(--shadow-focus);
  outline: none;
}

.funnel-option-tile.selected {
  border-color: var(--accent);
  box-shadow: var(--shadow-focus);
}

.funnel-option-tile .tile-image-wrap {
  border-radius: calc(var(--radius)  - 2px) calc(var(--radius)  - 2px) 0 0;
  background: #fff;
  width: 100%;
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.funnel-option-tile .tile-image {
  aspect-ratio: 480 / 432;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: auto;
  display: block;
}

.funnel-option-tile .tile-label {
  background: var(--accent);
  color: #fff;
  font-size: var(--tile-label-font);
  border-radius: 0 0 calc(var(--radius)) calc(var(--radius));
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  padding: clamp(10px, 1.5vw, 14px) 8px;
  font-weight: 700;
}

.funnel-question-image {
  border-radius: var(--radius);
  object-fit: contain;
  width: 100%;
  height: auto;
  display: block;
}

.funnel-result-image {
  margin-top: 0;
}

.funnel-screen .funnel-question-title {
  color: #000;
  text-align: center;
  margin: 0;
  padding: 16px 0 0;
  font-size: clamp(20px, 4vw + 4px, 26px);
  font-weight: 400;
}

.funnel-options-tiles-images {
  box-sizing: border-box;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  min-width: 0;
  margin-top: 24px;
  padding: 0 clamp(16px, 10vw, 88px);
  display: grid;
}

.funnel-option-tile-image {
  aspect-ratio: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 0;
  display: block;
  overflow: hidden;
}

@media (hover: hover) {
  .funnel-option-tile-image:hover {
    border-color: #7e8af780;
  }
}

.funnel-option-tile-image:focus, .funnel-option-tile-image:focus-visible {
  outline: none;
}

.funnel-option-tile-image.selected {
  border-color: var(--accent);
  box-shadow: var(--shadow-focus);
}

.funnel-option-tile-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.funnel-footer {
  color: var(--text-muted);
  margin-top: clamp(28px, 5vh, 48px);
  font-size: clamp(13px, 1.2vw + 2px, 15px);
  line-height: 1.5;
}

.funnel-footer strong {
  color: var(--text);
}

.funnel-footer a {
  color: var(--accent);
  text-decoration: none;
}

.funnel-footer a:hover {
  text-decoration: underline;
}

.funnel-back {
  font-family: inherit;
  font-size: var(--body-size);
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  align-items: center;
  gap: 6px;
  margin-bottom: clamp(12px, 2vh, 20px);
  padding: 10px 0;
  font-weight: 600;
  display: inline-flex;
}

.funnel-back:hover {
  color: var(--accent);
}

.funnel-back:focus-visible {
  color: var(--accent);
  outline: none;
}

.funnel-back svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.funnel-progress {
  background: #e0e0e0;
  border-radius: 2px;
  width: 100%;
  height: 4px;
  margin-bottom: clamp(12px, 2vh, 24px);
  overflow: hidden;
}

.funnel-progress-bar {
  background: var(--accent);
  border-radius: 2px;
  height: 100%;
  transition: width .3s;
}

.funnel-hero-image {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: auto;
  margin-top: 40px;
  display: block;
}

.funnel-card {
  background: var(--card-bg);
  border-radius: 24px;
  margin-top: 24px;
  padding: 24px;
  box-shadow: 1px 1px #cfcfcf;
}

.funnel-card .funnel-card-title {
  letter-spacing: -.02em;
  margin: 0;
  padding-bottom: 16px;
  font-size: clamp(26px, 5vw + 1rem, 34px);
  font-weight: 700;
  line-height: 1.25;
}

.funnel-card .funnel-card-title .accent {
  color: #2196f3;
}

.funnel-card .funnel-card-text {
  margin: 0;
  padding-bottom: 8px;
  font-size: clamp(16px, 2vw + 2px, 18px);
  line-height: 1.5;
}

.funnel-card .funnel-card-text:last-of-type {
  padding-bottom: 0;
}

.funnel-bonus-box {
  color: var(--text);
  background: #f5f5ff;
  border: 1px solid #5856ff;
  border-radius: 16px;
  margin-top: 16px;
  padding: 16px 24px;
  font-size: clamp(16px, 2vw + 2px, 18px);
  line-height: 1.5;
}

.funnel-btn-primary {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  width: 100%;
  font-family: inherit;
  font-size: var(--option-font);
  cursor: pointer;
  text-align: center;
  transition: background var(--transition), opacity var(--transition);
  border: none;
  margin: 40px auto 32px;
  padding: clamp(14px, 2.5vw, 18px) 24px;
  font-weight: 700;
  text-decoration: none;
  display: block;
}

.funnel-btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.funnel-btn-primary:focus-visible {
  box-shadow: var(--shadow-focus);
  outline: none;
}

@media (min-width: 768px) {
  :root {
    --container-max: var(--container-max-wide);
  }

  .funnel-options-tiles {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  body {
    padding: clamp(32px, 4vh, 48px) var(--pad-x) clamp(40px, 6vh, 64px);
  }
}

.funnel-loader-title {
  color: #000;
  margin: 0;
  padding: 0 0 clamp(20px, 4vh, 28px);
  font-size: clamp(24px, 4vw + 8px, 32px);
  font-weight: 600;
}

.funnel-screen[data-screen="loader"] .funnel-loader-title {
  text-align: center;
}

.funnel-processing {
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(24px, 4vh, 40px);
  display: flex;
}

.funnel-processing-item {
  color: #000;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 24px;
  font-size: 15px;
  font-weight: 500;
  display: grid;
}

.funnel-processing-track {
  background: #e6e9eb;
  border-radius: 10px;
  width: 100%;
  min-width: 0;
  height: 5px;
  overflow: hidden;
}

.funnel-processing-fill {
  background: linear-gradient(90deg, #e6e9eb, #98a5ff);
  border-radius: 10px;
  width: 0;
  height: 100%;
  transition: width .2s ease-out;
}

.funnel-processing-item.done .funnel-processing-fill {
  width: 100%;
}

.funnel-processing-status {
  flex-shrink: 0;
  justify-content: flex-end;
  align-items: center;
  width: 3.25rem;
  display: flex;
}

.funnel-processing-pct {
  color: #5c5c6a;
  text-align: right;
  min-width: 2.25em;
  font-size: 14px;
  font-weight: 600;
  transition: opacity .2s;
}

.funnel-processing-check {
  color: #fff;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  animation: .35s ease-out funnel-check-pop;
  display: none;
}

.funnel-processing-check svg {
  width: 12px;
  height: 12px;
}

.funnel-processing-item.done .funnel-processing-pct {
  display: none;
}

.funnel-processing-item.done .funnel-processing-check {
  display: flex;
}

@keyframes funnel-check-pop {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  60% {
    transform: scale(1.15);
  }

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

.funnel-processing-label {
  width: max-content;
  min-width: 0;
  max-width: 165px;
}

.funnel-popup-overlay {
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  background: #0006;
  transition: opacity .25s, visibility .25s;
  position: fixed;
  inset: 0;
}

.funnel-popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.funnel-popup-sheet {
  z-index: 101;
  background: #fff;
  border-radius: 16px 16px 0 0;
  max-height: 85vh;
  padding: 20px 24px 50px;
  transition: transform .3s;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
  transform: translateY(100%);
  box-shadow: 0 -4px 24px #0000001f;
}

.funnel-popup-overlay.is-open .funnel-popup-sheet {
  transform: translateY(0);
}

.funnel-popup-sheet h2 {
  color: #000;
  text-align: center;
  margin: 0;
  padding-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}

.funnel-popup-sheet .funnel-popup-image {
  border-radius: var(--radius);
  width: 40%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}

.funnel-popup-sheet .funnel-options {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 8px;
  display: grid;
}

.funnel-popup-sheet .funnel-option {
  text-align: center;
  box-shadow: none;
  border: 1px solid #8b5cf6;
  justify-content: center;
}

.funnel-popup-sheet .funnel-option:hover {
  border-color: #7c3aed;
}

.funnel-popup-sheet .funnel-option:focus-visible {
  border-color: #7c3aed;
  box-shadow: 0 0 0 2px #8b5cf640;
}

.funnel-screen[data-screen="email"] .funnel-email-title {
  color: #000;
  margin: 0;
  padding: 8px 0 16px;
  font-size: clamp(20px, 4vw + 4px, 24px);
  font-weight: 600;
}

.funnel-email-image {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  display: block;
}

.funnel-screen[data-screen="email"] .funnel-email-image {
  display: none;
}

.funnel-screen[data-screen="email"] .funnel-email-form {
  box-sizing: border-box;
  width: 100%;
}

.funnel-email-privacy-box {
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 14px 18px;
  display: flex;
  box-shadow: 0 1px 4px #0000000f;
}

.funnel-email-privacy-icon {
  color: #fff;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
}

.funnel-email-privacy-icon--shield {
  border-radius: 50%;
  padding: 0;
}

.funnel-email-privacy-icon--shield svg {
  width: 14px;
  height: 14px;
}

.funnel-email-privacy-text {
  color: #374151;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.funnel-input-email {
  width: 100%;
  height: 56px;
  color: var(--text);
  box-sizing: border-box;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
  border: 2px solid #7e8af7;
  border-radius: 32px;
  padding: 0 20px;
  font-family: inherit;
  font-size: 16px;
}

.funnel-input-email::placeholder {
  color: #9ca3af;
  font-weight: 500;
}

.funnel-input-email:focus {
  border-color: #e59800;
  outline: none;
}

.funnel-email-hint {
  color: var(--text-muted);
  margin: 12px 0 8px;
  font-size: 13px;
  font-weight: 500;
}

.funnel-email-domains {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  display: flex;
}

.funnel-email-domain-chip {
  color: var(--text);
  cursor: pointer;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13px;
  transition: background .2s, border-color .2s;
}

.funnel-email-domain-chip:hover {
  background: #e5e7eb;
  border-color: #d1d5db;
}

.funnel-email-domain-chip:focus-visible {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 2px #7e8af740;
}

.funnel-screen[data-screen="email"] .funnel-email-submit-wrap {
  margin-top: 24px;
  margin-bottom: 4px;
  padding-bottom: 0;
}

.funnel-screen[data-screen="email"] .funnel-email-legal {
  color: #2e2e2e;
  text-align: center;
  margin: 4px 0 0;
  padding: 0;
  font-size: 9px;
  line-height: 1.5;
}

.funnel-email-legal a {
  color: #1d34e2;
  font-weight: 700;
  text-decoration: none;
}

.funnel-email-legal a:hover {
  text-decoration: underline;
}

.funnel-reviews {
  margin-top: 24px;
  padding: 0;
}

.funnel-reviews-heading {
  color: var(--text);
  letter-spacing: -.02em;
  margin: 0 0 20px;
  font-size: clamp(18px, 2.5vw + 2px, 22px);
  font-weight: 600;
}

.funnel-review-card {
  border-radius: var(--radius);
  color: #000;
  text-align: left;
  background: #ffffff14;
  margin-bottom: 12px;
  padding: 24px;
}

.funnel-review-stars {
  --star-color: #f5a623;
  --star-empty: #e5e7eb;
  letter-spacing: .08em;
  margin-bottom: 10px;
  font-size: 1.15em;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.funnel-review-stars:before {
  content: "★★★★★";
  color: var(--star-empty);
}

.funnel-review-stars:after {
  content: "★★★★★";
  width: calc(var(--rating, 0) / 5 * 100%);
  color: var(--star-color);
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.funnel-reviews--minimal {
  margin-top: 16px;
  padding: 0;
}

.funnel-reviews--minimal .funnel-reviews-heading {
  text-align: center;
  color: #1a1a1f;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  font-size: clamp(20px, 3vw + 2px, 24px);
  font-weight: 700;
}

.funnel-reviews--minimal .funnel-review-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  margin-bottom: 24px;
  padding: 24px 28px;
  transition: box-shadow .25s, transform .2s;
  box-shadow: 0 2px 8px #0000000f, 0 4px 16px #0000000a;
}

.funnel-reviews--minimal .funnel-review-card:hover {
  box-shadow: 0 4px 20px #00000014, 0 8px 24px #0000000f;
}

.funnel-reviews--minimal .funnel-review-text {
  color: #2d2d2d;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
}

.funnel-reviews--minimal .funnel-review-meta {
  color: #6b7280;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.funnel-reviews--minimal .funnel-review-meta strong {
  color: #1a1a1f;
  font-weight: 600;
}

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

.funnel-paywall-wrap {
  width: 100%;
  min-width: 0;
  max-width: 680px;
  padding: 96px var(--pad-x) 48px;
  margin: 0 auto;
}

.funnel-paywall-discount-banner-wrapper {
  z-index: 2147483647;
  pointer-events: none;
  justify-content: center;
  width: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.funnel-paywall-discount-banner {
  pointer-events: auto;
  box-sizing: border-box;
  background: #fff;
  border-radius: 18px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: calc(100% - 16px);
  max-width: 420px;
  margin-top: 8px;
  padding: 10px 10px 10px 18px;
  display: flex;
  box-shadow: 0 6px 20px #00000014;
}

.funnel-paywall-discount-info {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.funnel-paywall-discount-label {
  color: #1a1a1f;
  letter-spacing: -.01em;
  font-size: 13px;
  font-weight: 500;
}

.funnel-paywall-discount-timer {
  color: #000;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
}

.funnel-paywall-discount-cta {
  appearance: none;
  cursor: pointer;
  color: #fff;
  letter-spacing: -.01em;
  text-align: center;
  min-width: 116px;
  transition: transform var(--transition);
  background: #7e8af7;
  border: none;
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 0 0 4px #7e8af747, 0 6px 16px #7e8af766;
}

.funnel-paywall-discount-cta:hover {
  transform: translateY(-1px);
}

.funnel-paywall-discount-cta:active {
  transform: translateY(0);
}

.funnel-paywall-hero-title {
  color: #000;
  text-align: center;
  margin: 12px 0 0;
  font-size: clamp(26px, 4vw + 6px, 34px);
  font-weight: 700;
}

.funnel-paywall-cta-fixed {
  z-index: 40;
  width: calc(100% - 2 * var(--pad-x));
  max-width: 480px;
  margin: 0;
  animation: 1.4s linear infinite funnel-pulse;
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes funnel-pulse {
  0%, 100% {
    box-shadow: 0 0 #7e8af766;
  }

  50% {
    box-shadow: 0 0 0 8px #7e8af726;
  }
}

.funnel-paywall-section-title {
  color: #000;
  text-align: center;
  margin: 16px 0 0;
  font-size: clamp(26px, 4vw + 6px, 32px);
  font-weight: 700;
}

.funnel-paywall-section-title .accent {
  color: #6850a4;
}

.funnel-paywall-section-title .accent2 {
  color: #6750a4;
}

.funnel-paywall-offer-card {
  background: #f5f5fa;
  border: 2px solid #7e8af7;
  border-radius: 22px;
  margin-top: 18px;
  padding: 26px 22px 22px;
}

.funnel-paywall-offer-title {
  color: #000;
  text-align: center;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  font-size: clamp(22px, 3vw + 2px, 26px);
  font-weight: 800;
}

.funnel-paywall-offer-list {
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0 4px;
  list-style: none;
  display: flex;
}

.funnel-paywall-offer-item {
  color: #1a1a1f;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  display: flex;
}

.funnel-paywall-offer-check {
  background: #7e8af7;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  display: inline-flex;
}

.funnel-paywall-offer-total-row {
  border-top: 1px solid #7e8af740;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  display: flex;
}

.funnel-paywall-offer-total-label {
  color: #1a1a1f;
  padding-top: 4px;
  font-size: 16px;
  font-weight: 500;
}

.funnel-paywall-offer-total-right {
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  display: flex;
}

.funnel-paywall-offer-total-amount {
  color: #000;
  letter-spacing: -.02em;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
}

.funnel-paywall-offer-total-suffix {
  color: #000;
  font-size: 17px;
  font-weight: 800;
}

.funnel-paywall-offer-savings-badge {
  color: #c0392b;
  letter-spacing: -.01em;
  background: #fad9d2;
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
}

.funnel-paywall-offer-renewal {
  color: #4b5563;
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.funnel-paywall-plan-cta {
  margin-top: 12px;
  margin-bottom: 0;
}

.funnel-paywall-disclaimer {
  color: var(--text-muted);
  text-align: center;
  max-width: 520px;
  margin: 12px auto 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.funnel-paywall-disclaimer a {
  color: var(--accent);
  text-decoration: none;
}

.funnel-paywall-disclaimer a:hover {
  text-decoration: underline;
}

.funnel-checkout-block {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  margin-top: 16px;
  padding: 20px;
  box-shadow: 0 2px 12px #0000000a;
}

.funnel-checkout-block h3 {
  color: #6750a4;
  text-align: center;
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
}

.funnel-checkout-placeholder {
  color: var(--text-muted);
  text-align: center;
  background: #f9fafb;
  border-radius: 14px;
  padding: 24px;
  font-size: 14px;
}

.funnel-paywall-image {
  width: 100%;
  height: auto;
  margin-top: 12px;
  display: block;
}

.funnel-paywall-image.pad-h {
  box-sizing: border-box;
  width: calc(100% - 48px);
  margin-left: 24px;
  margin-right: 24px;
}

.funnel-faq {
  margin-top: 16px;
  padding: 0;
}

.funnel-faq-title {
  text-align: center;
  color: #000;
  letter-spacing: -.02em;
  margin: 0 0 16px;
  font-size: clamp(22px, 3vw + 2px, 28px);
  font-weight: 700;
}

.funnel-faq-list {
  flex-direction: column;
  gap: 0;
  display: flex;
}

.funnel-faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-bottom: none;
  transition: background .2s;
}

.funnel-faq-item:first-child {
  border-radius: 16px 16px 0 0;
}

.funnel-faq-item:last-child {
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0 0 16px 16px;
}

.funnel-faq-item:only-child {
  border-radius: 16px;
}

.funnel-faq-item:hover {
  background: #fafafa;
}

.funnel-faq-item.is-open {
  background: #f8fafc;
}

.funnel-faq-question {
  color: #1a1a1f;
  cursor: pointer;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  transition: color .2s;
  display: flex;
}

.funnel-faq-item.is-open .funnel-faq-question {
  color: #5b21b6;
}

.funnel-faq-question:after {
  content: "";
  border-bottom: 2.5px solid #6b7280;
  border-right: 2.5px solid #6b7280;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  transition: transform .25s, border-color .2s;
  transform: rotate(45deg);
}

.funnel-faq-item.is-open .funnel-faq-question:after {
  border-color: #5b21b6;
  transform: rotate(-135deg);
}

.funnel-faq-answer {
  color: #4b5563;
  margin: 0;
  padding: 0 24px 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  display: none;
}

.funnel-faq-item.is-open .funnel-faq-answer {
  display: block;
}

.funnel-paywall-footer {
  color: #656565;
  margin: 20px 0 16px;
  font-size: 12px;
  line-height: 1.5;
}

.funnel-paywall-footer .darker {
  color: #707070;
}

.tg-modal-overlay {
  z-index: 999999;
  background: #000000d9;
  position: fixed;
  inset: 0;
  overflow-y: auto;
}

.tg-modal-center {
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  padding: 20px;
  display: flex;
}

.tg-modal-content {
  box-sizing: border-box;
  background: #1a1a2e;
  border-radius: 16px;
  width: 100%;
  max-width: 380px;
  padding: 24px;
  position: relative;
}

.tg-modal-close {
  color: #fff;
  cursor: pointer;
  z-index: 10;
  background: #ffffff1a;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 18px;
  transition: background .2s;
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
}

.tg-modal-close:hover {
  background: #fff3;
}

.tg-modal-title {
  color: #fff;
  text-align: center;
  margin: 0 0 4px;
  padding-right: 30px;
  font-size: 18px;
  font-weight: 700;
}

.tg-modal-plan {
  color: #fff9;
  text-align: center;
  margin: 0 0 20px;
  font-size: 14px;
}

.tg-loader {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  display: flex;
}

.tg-spinner {
  border: 3px solid #fff3;
  border-top-color: #7e8af7;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: .8s linear infinite tg-spin;
}

@keyframes tg-spin {
  to {
    transform: rotate(360deg);
  }
}

.tg-loader-text {
  color: #ffffffb3;
  margin: 16px 0 0;
  font-size: 14px;
}

.tg-form {
  margin-top: 0;
}

.tg-wallet-btn {
  margin-bottom: 12px;
}

.tg-wallet-btn:empty {
  display: none;
}

.tg-input {
  box-sizing: border-box;
  color: #333;
  background: #fff;
  border: none;
  border-radius: 8px;
  outline: none;
  width: 100%;
  height: 48px;
  margin-bottom: 10px;
  padding: 0 8px;
  font-family: inherit;
  font-size: 16px;
}

.tg-input:focus {
  box-shadow: 0 0 0 2px #7e8af780;
}

.tg-card-field {
  background: #fff;
  border-radius: 8px;
  height: 48px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.tg-card-field iframe {
  position: absolute;
  top: 0;
  left: 6px;
  border: none !important;
  width: calc(100% - 12px) !important;
  height: 100% !important;
}

.tg-card-row {
  gap: 8px;
  margin-bottom: 14px;
  display: flex;
}

.tg-half {
  box-sizing: border-box;
  width: 50%;
}

.tg-pay-btn {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  width: 100%;
  padding: 16px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  transition: background .2s, opacity .2s;
}

.tg-pay-btn:hover {
  background: var(--accent-hover);
}

.tg-pay-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.tg-status {
  text-align: center;
  color: #fff;
  margin-top: 16px;
  font-size: 14px;
}

.tg-status-error {
  color: #ef4444;
}

.tg-status-success {
  color: #22c55e;
}

.tg-footer-text {
  color: #fff6;
  text-align: center;
  margin: 16px 0 0;
  font-size: 12px;
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/