:root {
  --background: #f6f1e7;
  --foreground: #33403a;
  --card: #fbf8ef;
  --muted: #e9e1d3;
  --muted-foreground: #617069;
  --border: #ded4c2;
  --authority: #2e5c4e;
  --authority-dark: #18382f;
  --authority-foreground: #fbf8ef;
  --primary: #5ca482;
  --secondary: #d9b5a4;
  --cta: #c75d42;
  --cta-dark: #993a24;
  --gold: #d3a62d;
  --success: #2f8d62;
  --destructive: #dc3f37;
  --white: #ffffff;
  --black: #050505;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body,
#app {
  min-height: 100dvh;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: default;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

vturb-smartplayer {
  max-width: 100% !important;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: "Playfair Display", Georgia, serif;
}

.app-shell {
  min-height: 100dvh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--background);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 37px;
  padding: 12px 48px;
  color: var(--authority-foreground);
  background: linear-gradient(180deg, var(--authority), var(--authority-dark));
  box-shadow: 0 2px 14px rgba(31, 75, 63, 0.25);
}

.topbar-title {
  text-align: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.back-button {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: var(--authority-foreground);
  display: grid;
  place-items: center;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.progress-track {
  height: 8px;
  width: 100%;
  background: var(--muted);
  overflow: hidden;
}

.progress-bar {
  position: relative;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cta), var(--gold));
  border-radius: 0 999px 999px 0;
  transition: width 0.35s ease;
}

.progress-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -35%;
  width: 32%;
  transform: skewX(-20deg);
  background: rgba(255, 255, 255, 0.35);
  filter: blur(2px);
  animation: shimmer 2.2s ease-in-out infinite;
}

.scroll-area {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.screen {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  animation: slide-in 0.22s ease both;
}

.container {
  width: 100%;
  max-width: 512px;
  margin: 0 auto;
  padding: 32px 20px;
}

.centered {
  align-items: center;
  justify-content: center;
}

.text-center {
  text-align: center;
}

.section-title {
  margin-bottom: 8px;
  color: var(--authority);
  font-size: 25px;
  line-height: 1.16;
  font-weight: 800;
}

.section-title.small {
  font-size: 21px;
}

.subtitle {
  margin-bottom: 24px;
  color: var(--muted-foreground);
  font-size: 13px;
  line-height: 1.45;
}

.stack {
  display: grid;
  gap: 12px;
}

.choice {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 15px 16px;
  color: var(--foreground);
  text-align: left;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 2px 8px rgba(44, 62, 55, 0.04);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.choice:hover {
  border-color: rgba(46, 92, 78, 0.55);
  background: rgba(92, 164, 130, 0.08);
  box-shadow: 0 8px 18px rgba(44, 62, 55, 0.08);
}

.choice:active {
  transform: scale(0.99);
}

.choice.selected {
  border-color: var(--authority);
  background: rgba(92, 164, 130, 0.17);
  box-shadow: 0 0 0 3px rgba(46, 92, 78, 0.12), 0 8px 18px rgba(46, 92, 78, 0.12);
}

.choice-desc {
  display: block;
  margin-top: 5px;
  color: var(--muted-foreground);
  font-size: 12px;
  font-weight: 500;
}

.check-choice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.box-check {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  margin-top: 1px;
  border: 2px solid var(--muted-foreground);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--white);
}

.choice.selected .box-check {
  border-color: var(--authority);
  background: var(--authority);
}

.cta,
.success-cta {
  position: relative;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 18px 18px;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  overflow: hidden;
  transition: transform 0.12s ease, filter 0.2s ease;
}

.cta {
  background: linear-gradient(180deg, #d16547, var(--cta-dark));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.45), inset 0 -3px 8px rgba(121, 31, 21, 0.35), 0 12px 28px -10px rgba(171, 66, 43, 0.7);
}

.success-cta {
  display: block;
  background: linear-gradient(180deg, var(--success), #27794f);
  box-shadow: 0 1px rgba(255, 255, 255, 0.25) inset, 0 10px 24px -8px rgba(47, 141, 98, 0.65);
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 36%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: translate(-160%) skew(-18deg);
  animation: shine 3.6s ease-in-out infinite;
  pointer-events: none;
}

.pulse-cta {
  animation: pulse-scale 1.7s ease-in-out infinite;
}

.cta:hover,
.success-cta:hover {
  filter: brightness(1.06);
}

.cta:active,
.success-cta:active {
  transform: scale(0.98);
}

.cta:disabled,
.success-cta:disabled {
  opacity: 0.45;
  animation: none;
}

.media {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 30px -18px rgba(24, 56, 47, 0.45);
}

.media.small {
  width: 68%;
  margin: 16px auto 0;
}

.landing {
  padding: 32px 20px 56px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.landing-inner {
  max-width: 512px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.badge {
  align-self: center;
  max-width: 100%;
  margin: 0 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(199, 93, 66, 0.42);
  border-radius: 999px;
  background: rgba(199, 93, 66, 0.15);
  color: var(--cta);
  padding: 4px 12px;
  font-size: 9px;
  line-height: 1.1;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 7px rgba(85, 53, 37, 0.06);
  animation: gentle-breath 2s ease-in-out infinite;
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cta);
}

.live-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--cta);
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.landing-title {
  width: 100%;
  max-width: 100%;
  text-align: center;
  font-family: Poppins, Lato, sans-serif;
  font-weight: 900;
}

.landing-title-top {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: min(100%, 474px);
  max-width: 100%;
  margin: 0 auto;
  border-radius: 15px;
  padding: 18px 24px;
  color: var(--white);
  background: linear-gradient(135deg, #17382e, #092119);
  box-shadow: 0 12px 28px -18px rgba(11, 42, 32, 0.85);
  text-transform: uppercase;
  font-size: 34px;
  line-height: 1.18;
  text-align: center;
}

.landing-title-top span:first-child {
  font-size: 32px;
  line-height: 1;
}

.landing-title-top strong {
  color: #f5c21b;
}

.landing-title-top span:last-child {
  display: block;
  min-width: 0;
}

.landing-subtitle {
  display: block;
  margin: 17px auto 0;
  max-width: 100%;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.3;
  color: var(--foreground);
}

.mark {
  border-radius: 6px;
  background: rgba(251, 212, 55, 0.64);
  padding: 0 5px 2px;
}

.landing-image-wrap {
  flex: 0 0 auto;
  height: auto;
  min-height: 0;
  max-height: none;
  overflow: visible;
  display: grid;
  place-items: center;
  margin: 12px 0 4px;
}

.landing-image {
  width: 252px;
  max-width: 72%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  border-radius: 16px;
  box-shadow: 0 16px 36px -20px rgba(24, 56, 47, 0.5);
}

.landing-footer {
  width: min(100%, 420px);
  margin: 0 auto 10px;
  color: var(--muted-foreground);
  text-align: center;
  font-size: 12px;
  line-height: 1.35;
}

.landing-actions {
  margin-top: 0;
}

.landing .cta {
  width: min(100%, 480px);
  display: block;
  margin: 0 auto;
  padding: 13px 18px;
  font-size: 16px;
}

.landing-bullets {
  display: flex;
  justify-content: center;
  gap: 4px 12px;
  flex-wrap: wrap;
  margin-top: 8px;
  color: var(--authority);
  font-size: 11px;
  font-weight: 900;
}

.landing-question {
  margin: 6px 0 8px;
  color: var(--authority);
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.quote-box,
.soft-box {
  border-radius: var(--radius);
  background: rgba(92, 164, 130, 0.11);
  padding: 16px;
}

.quote-box {
  margin-top: 20px;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.video-frame {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 24px;
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 32px -18px rgba(0, 0, 0, 0.45);
}

.vturb-player-placeholder,
.video-placeholder {
  position: relative;
  width: 100%;
  padding-top: 177.777%;
  background: #000;
}

.attention-block {
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.attention-block.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.alert-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  background: rgba(199, 93, 66, 0.13);
  color: var(--cta);
  font-size: 28px;
}

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

.signal-card {
  position: relative;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  padding: 10px;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.signal-card.selected {
  border-color: var(--authority);
  background: rgba(92, 164, 130, 0.12);
  box-shadow: 0 8px 18px rgba(46, 92, 78, 0.12);
}

.signal-card img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 9px;
}

.signal-card .signal-title {
  min-height: 42px;
  display: block;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 900;
}

.round-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin: 9px auto 0;
  border: 2px solid rgba(97, 112, 105, 0.55);
  border-radius: 50%;
  color: var(--white);
}

.selected .round-check {
  border-color: var(--authority);
  background: var(--authority);
}

.info-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 8px 20px rgba(44, 62, 55, 0.06);
}

.info-card img {
  width: 100%;
  height: 192px;
  object-fit: cover;
}

.info-card-body {
  padding: 16px;
  text-align: center;
}

.info-card h4 {
  margin-bottom: 8px;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.info-card p {
  color: var(--muted-foreground);
  font-size: 12px;
  line-height: 1.5;
}

.name-input {
  width: 100%;
  border: 2px solid rgba(92, 164, 130, 0.3);
  border-radius: 14px;
  background: var(--card);
  padding: 18px 14px;
  text-align: center;
  color: var(--foreground);
  font-size: 18px;
  outline: none;
}

.name-input:focus {
  border-color: var(--authority);
  box-shadow: 0 0 0 3px rgba(46, 92, 78, 0.12);
}

.spinner {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border: 3px solid var(--authority);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.progress-large {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: var(--muted);
  overflow: hidden;
}

.progress-large span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--cta);
  transition: width 0.08s linear;
}

.result-badge {
  border: 2px solid rgba(199, 93, 66, 0.35);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  padding: 18px;
  text-align: center;
  box-shadow: 0 5px 16px rgba(44, 62, 55, 0.07);
}

.stage-number {
  margin-top: 8px;
  color: var(--cta);
  font-size: 32px;
  font-weight: 900;
}

.symptom-list {
  display: grid;
  gap: 10px;
}

.symptom-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid rgba(222, 212, 194, 0.7);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  padding: 11px 12px;
  font-size: 14px;
  line-height: 1.35;
}

.bar-list {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(222, 212, 194, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  padding: 18px;
}

.bar-row-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 900;
}

.bar-track {
  height: 13px;
  border-radius: 999px;
  background: rgba(233, 225, 211, 0.8);
  overflow: hidden;
}

.bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cta), var(--gold));
}

.danger-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 20px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--cta), #d5403c);
}

.comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.avatar-panel {
  text-align: center;
}

.avatar-box {
  border: 2px solid rgba(46, 92, 78, 0.25);
  border-radius: 16px;
  background: rgba(92, 164, 130, 0.1);
  padding: 8px;
}

.avatar-box img {
  width: 128px;
}

.transform-list {
  display: grid;
  gap: 10px;
}

.transform-item {
  display: flex;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 12px;
}

.line-through {
  color: var(--muted-foreground);
  text-decoration: line-through;
  font-size: 12px;
}

.alert-card {
  border: 2px solid rgba(199, 93, 66, 0.3);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 10px 22px rgba(44, 62, 55, 0.08);
}

.alert-head {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 9px 14px;
  color: var(--cta);
  background: rgba(199, 93, 66, 0.1);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.alert-body {
  padding: 18px;
}

.bullet-list {
  display: grid;
  gap: 8px;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.4;
}

.choose-grid {
  display: grid;
  gap: 16px;
}

.choose-button {
  width: 100%;
  display: flex;
  gap: 14px;
  align-items: center;
  border-radius: 16px;
  border: 2px solid transparent;
  padding: 22px;
  text-align: left;
  transition: transform 0.15s ease;
}

.choose-button.good {
  color: var(--authority-foreground);
  background: var(--authority);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(92, 164, 130, 0.14), 0 14px 28px rgba(46, 92, 78, 0.2);
  animation: pulse-scale 1.8s ease-in-out infinite;
}

.choose-button.bad {
  color: var(--muted-foreground);
  background: var(--muted);
  border-color: var(--border);
}

.choose-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 24px;
}

.timer-banner {
  background: var(--destructive);
  color: var(--white);
  text-align: center;
  padding: 12px 16px;
}

.timer-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.timer-value {
  margin-top: 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.offer-section {
  margin-bottom: 32px;
}

.offer-checkout {
  width: 100%;
  max-width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 8px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #32bb78, #20965c);
  box-shadow: 0 10px 22px -12px rgba(32, 150, 92, 0.75);
  font-size: 13px;
  line-height: 1.1;
  white-space: nowrap;
}

.offer-checkout.pulse-cta {
  animation: offer-pulse 1.55s ease-in-out infinite;
}

.offer-card .offer-checkout,
.price-body .offer-checkout {
  width: 100%;
}

.offer-card {
  border: 2px solid rgba(46, 92, 78, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(92, 164, 130, 0.06), rgba(255, 255, 255, 0.35));
  padding: 16px;
  box-shadow: 0 10px 24px rgba(44, 62, 55, 0.06);
}

.chart-card {
  border: 2px solid rgba(46, 92, 78, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--card), rgba(233, 225, 211, 0.5));
  padding: 18px;
  box-shadow: 0 10px 24px rgba(44, 62, 55, 0.08);
}

.chart-days {
  display: flex;
  justify-content: space-between;
  color: var(--muted-foreground);
  font-size: 10px;
  font-weight: 900;
}

.chart {
  height: 176px;
  position: relative;
}

.chart-tag {
  position: absolute;
  padding: 5px 8px;
  border-radius: 7px;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
}

.chart-tag.red {
  top: 5px;
  left: 12px;
  background: var(--destructive);
}

.chart-tag.green {
  right: 0;
  bottom: 8px;
  background: var(--success);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--authority);
  font-size: 15px;
  font-weight: 900;
}

.stat span {
  color: var(--muted-foreground);
  font-size: 10px;
}

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

.benefit-card {
  overflow: hidden;
  border: 1px solid rgba(46, 92, 78, 0.2);
  border-radius: 12px;
  background: var(--card);
  box-shadow: 0 5px 12px rgba(44, 62, 55, 0.05);
}

.benefit-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.benefit-card p {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px 8px;
  color: var(--authority);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.receive-list,
.bonus-list,
.future-list {
  display: grid;
  gap: 12px;
}

.receive-item,
.bonus-item,
.future-item,
.testimonial-card {
  border-radius: 12px;
  padding: 14px;
  background: rgba(92, 164, 130, 0.08);
  border: 1px solid rgba(46, 92, 78, 0.18);
}

.receive-item {
  display: flex;
  gap: 12px;
}

.bonus-item {
  background: linear-gradient(90deg, rgba(199, 93, 66, 0.11), rgba(199, 93, 66, 0.04));
  border-color: rgba(199, 93, 66, 0.2);
}

.bonus-head {
  display: flex;
  justify-content: space-between;
  color: rgba(199, 93, 66, 0.72);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus-body {
  display: flex;
  gap: 9px;
  margin-top: 4px;
}

.bonus-number {
  color: rgba(199, 93, 66, 0.35);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.price-card {
  overflow: hidden;
  border: 2px solid var(--authority);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(92, 164, 130, 0.14), rgba(92, 164, 130, 0.06));
  text-align: center;
  box-shadow: 0 10px 24px rgba(44, 62, 55, 0.1);
}

.price-head {
  background: var(--authority);
  color: var(--authority-foreground);
  padding: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.price-body {
  padding: 20px 20px 24px;
}

.price-main {
  margin: 6px 0;
  color: var(--authority);
  font-family: "Arial Black", Lato, sans-serif;
  font-size: 50px;
  line-height: 1;
}

.price-main span {
  font-size: 24px;
}

.security-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 11px;
  color: var(--muted-foreground);
  font-size: 12px;
}

.carousel {
  position: relative;
}

.carousel-window {
  overflow: hidden;
  border: 2px solid rgba(46, 92, 78, 0.15);
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-slide {
  position: relative;
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 28px 14px 14px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
  font-size: 12px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.44);
  color: var(--white);
}

.carousel-nav.prev {
  left: 8px;
}

.carousel-nav.next {
  right: 8px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(97, 112, 105, 0.35);
  transition: width 0.2s ease, background 0.2s ease;
}

.dot.active {
  width: 16px;
  background: var(--authority);
}

.guarantee {
  border: 2px solid rgba(46, 92, 78, 0.15);
  border-radius: 16px;
  background: rgba(92, 164, 130, 0.08);
  padding: 24px 18px;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 14px;
  text-align: left;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
}

.faq-answer {
  display: none;
  margin-top: 12px;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.5;
}

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

.dark-page {
  min-height: 100dvh;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.dark-container {
  width: 100%;
  max-width: 512px;
  margin: 0 auto;
  padding: 20px 20px 48px;
  overflow-x: hidden;
}

.dark-timer {
  padding-top: 8px;
  text-align: center;
}

.dark-timer p {
  color: #a1a1aa;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dark-timer-boxes {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.time-box strong {
  display: block;
  min-width: 72px;
  border: 1px solid #3f3f46;
  border-radius: 9px;
  background: #18181b;
  padding: 8px 12px;
  color: #fff;
  font-size: 31px;
}

.time-box span {
  display: block;
  margin-top: 4px;
  color: #71717a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.upsell-warning {
  margin-top: 24px;
  border-radius: 6px;
  background: #dc2626;
  padding: 14px 18px;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.upsell-intro {
  margin: 20px 0 16px;
  color: #d4d4d8;
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
}

.upsell-intro strong {
  color: #22c55e;
}

.dark-card {
  border: 1px solid #27272a;
  border-radius: 12px;
  background: #111113;
  padding: 18px;
}

.dark-list {
  display: grid;
  gap: 9px;
  color: #e4e4e7;
  font-size: 13px;
  line-height: 1.45;
}

.upsell-price {
  text-align: center;
}

.upsell-price .price {
  color: #22c55e;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.hidden {
  display: none !important;
}

.invisible-space {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.dashboard {
  min-height: 100dvh;
  background: var(--background);
  overflow-x: hidden;
}

.login-screen {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.dashboard-container {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 32px 20px;
}

.login-card {
  width: 100%;
  max-width: min(280px, calc(100vw - 40px));
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  padding: 24px;
  box-shadow: 0 10px 24px rgba(44, 62, 55, 0.08);
}

.tab-row,
.range-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tab-button {
  border: 0;
  border-radius: 9px;
  background: var(--muted);
  padding: 9px 13px;
  color: var(--muted-foreground);
  font-size: 13px;
  font-weight: 900;
}

.tab-button.active {
  background: var(--authority);
  color: var(--authority-foreground);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.metric {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 14px;
}

.metric strong {
  display: block;
  color: var(--authority);
  font-size: 24px;
}

.mini-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--muted);
  overflow: hidden;
  margin-top: 8px;
}

.mini-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--authority);
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  from {
    transform: translateX(0) skewX(-20deg);
  }
  to {
    transform: translateX(430%) skewX(-20deg);
  }
}

@keyframes shine {
  0% {
    transform: translate(-160%) skew(-18deg);
  }
  55%,
  100% {
    transform: translate(380%) skew(-18deg);
  }
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes gentle-breath {
  0%,
  100% {
    opacity: 0.86;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-scale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes offer-pulse {
  0%,
  100% {
    filter: brightness(1);
    box-shadow: 0 10px 22px -12px rgba(32, 150, 92, 0.75), 0 0 0 0 rgba(47, 184, 113, 0.38);
  }
  50% {
    filter: brightness(1.08);
    box-shadow: 0 14px 30px -10px rgba(32, 150, 92, 0.94), 0 0 0 9px rgba(47, 184, 113, 0);
  }
}

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

@media (max-width: 520px) {
  .landing {
    padding: 24px 16px 44px;
  }

  .landing-title-top {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 7px;
    padding: 14px 14px;
    font-size: 23px;
    line-height: 1.16;
  }

  .landing-title-top span:first-child {
    font-size: 24px;
  }

  .landing-subtitle {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.28;
  }

  .landing-image {
    max-width: 84%;
  }

  .landing .cta {
    font-size: 14px;
  }
}

@media (min-width: 640px) {
  .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .container {
    padding: 40px 20px;
  }

  .landing {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .section-title {
    font-size: 30px;
  }
}
