:root {
  color-scheme: dark;
  --bg: #0b0b0f;
  --panel: #171820;
  --panel-soft: #20212b;
  --text: #f7f3ee;
  --muted: #b9b0a7;
  --line: rgba(255, 255, 255, 0.11);
  --hot: #ff3d71;
  --fire: #ff6a3d;
  --gold: #f4b95a;
  --green: #39d98a;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 61, 113, 0.16), transparent 28rem),
    linear-gradient(160deg, #0b0b0f 0%, #151019 45%, #0c1110 100%);
  color: var(--text);
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.app-shell {
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 14px max(22px, env(safe-area-inset-bottom));
}

.hero {
  display: grid;
  gap: 14px;
}

.video-frame {
  position: relative;
  min-height: 48vh;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.02) 0%, rgba(5, 5, 8, 0.1) 62%, rgba(5, 5, 8, 0.5) 100%),
    linear-gradient(90deg, rgba(255, 61, 113, 0.18) 0%, rgba(5, 5, 8, 0.02) 48%, rgba(244, 185, 90, 0.12) 100%);
}

.hero-copy {
  display: grid;
  gap: 11px;
  text-wrap: balance;
}

.eyebrow,
.offer-tag,
.footer-note span:first-child {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(11, 11, 15, 0.48);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 14ch;
  background: linear-gradient(90deg, #fff7ed 0%, var(--gold) 42%, var(--hot) 100%);
  background-clip: text;
  color: transparent;
  font-size: clamp(2rem, 11vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 32rem;
  color: rgba(247, 243, 238, 0.8);
  font-size: 0.98rem;
  line-height: 1.45;
}

.offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.offer-intro {
  margin-top: 12px;
  border: 1px solid rgba(244, 185, 90, 0.22);
  border-radius: 8px;
  padding: 12px 13px;
  background:
    linear-gradient(135deg, rgba(255, 61, 113, 0.12), rgba(244, 185, 90, 0.07)),
    rgba(23, 24, 32, 0.78);
  text-align: center;
}

.offer-intro strong {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.2;
}

.offer-card {
  display: grid;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(23, 24, 32, 0.9);
}

.main-offer {
  background:
    linear-gradient(135deg, rgba(255, 61, 113, 0.28), rgba(244, 185, 90, 0.13)),
    rgba(23, 24, 32, 0.94);
}

.premium-offer {
  background:
    linear-gradient(135deg, rgba(244, 185, 90, 0.2), rgba(255, 106, 61, 0.16)),
    rgba(23, 24, 32, 0.94);
}

.offer-tag {
  background: rgba(255, 61, 113, 0.12);
  color: #ffd2df;
}

.offer-tag.economy {
  color: var(--green);
  background: rgba(57, 217, 138, 0.08);
}

.offer-tag.premium {
  color: #ffe1a6;
  background: rgba(244, 185, 90, 0.1);
}

.offer-card h2 {
  font-size: 1.08rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.offer-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.price-line {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: end;
  gap: 6px;
  border-radius: 8px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.18);
}

.price-line span,
.price-line small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.price-line strong {
  color: var(--text);
  font-size: 1.38rem;
  line-height: 0.95;
}

.offer-row,
.footer-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.offer-row {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--text);
  font-size: 0.9rem;
}

.offer-row span {
  color: var(--muted);
}

.offer-cta {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(57, 217, 138, 0.12);
  color: #dfffee;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.hot-cta {
  background: linear-gradient(135deg, var(--hot), var(--fire));
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 61, 113, 0.24);
}

.premium-cta {
  background: linear-gradient(135deg, var(--gold), var(--fire));
  color: #1a0d09;
}

.footer-note {
  padding: 16px 2px 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-note span:first-child {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: end center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.66);
}

.modal-backdrop[hidden] {
  display: none;
}

.plan-modal {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(100%, 430px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 61, 113, 0.16), rgba(244, 185, 90, 0.09)),
    #15151d;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.55);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
}

.modal-kicker {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 61, 113, 0.12);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-modal h2 {
  padding-right: 34px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.plan-modal p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.modal-options {
  display: grid;
  gap: 10px;
}

.modal-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 12px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.modal-option span {
  color: var(--text);
  font-weight: 900;
}

.modal-option strong {
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
}

.modal-option small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.82rem;
}

.lifetime-option {
  border-color: rgba(244, 185, 90, 0.34);
  background: linear-gradient(135deg, rgba(244, 185, 90, 0.16), rgba(255, 106, 61, 0.12));
}

.pix-result {
  display: grid;
  gap: 9px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.pix-result[hidden] {
  display: none;
}

.pix-result span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pix-access-message {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.35;
}

.pix-result textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.26);
  color: var(--text);
  font: 0.82rem ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  line-height: 1.35;
}

.copy-pix {
  border: 0;
  border-radius: 8px;
  padding: 12px;
  background: linear-gradient(135deg, var(--hot), var(--fire));
  color: white;
  cursor: pointer;
  font-weight: 900;
}

.modal-status {
  min-height: 1.2em;
  color: var(--muted);
  font-size: 0.84rem;
}

@media (min-width: 860px) {
  .app-shell {
    width: min(100%, 980px);
    padding: 24px;
  }

  .hero,
  .video-frame {
    min-height: auto;
  }

  .hero {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: center;
    min-height: 62vh;
  }

  .video-frame {
    min-height: 62vh;
  }

  h1 {
    font-size: 4.25rem;
  }

  .offers {
    grid-template-columns: 0.95fr 1.1fr 1fr;
  }

  .modal-backdrop {
    place-items: center;
  }
}
