:root {
  --orange: #ff6a00;
  --orange-deep: #e85d00;
  --ink: #1a120c;
  --muted: #6b5c52;
  --paper: #fff7ef;
  --card: #ffffff;
  --line: #f0e4d8;
  --ok: #1a7f46;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Avenir Next", Helvetica, Arial, sans-serif;
  background:
    radial-gradient(900px 420px at 50% -80px, #ffd7b0 0%, transparent 68%),
    var(--paper);
  color: var(--ink);
  min-height: 100vh;
}

body.has-sticky {
  padding-bottom: 92px;
}

.wrap {
  width: min(640px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 40px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--muted);
}

.brand strong {
  color: var(--orange);
  font-size: 15px;
}

.live {
  color: var(--ok);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kicker {
  margin: 0 0 8px;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(36px, 8vw, 52px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.lead {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.45;
  color: var(--muted);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
}

.pill.on {
  background: #fff4ea;
  border-color: #ffd2ad;
  color: var(--orange-deep);
}

.ticket {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 18px 18px;
  box-shadow: 0 18px 40px rgba(120, 50, 0, 0.1);
}

.savings {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.savings-amt {
  background: var(--orange);
  color: #fff;
  border-radius: 16px;
  min-width: 86px;
  padding: 12px 10px;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.savings strong {
  display: block;
  font-size: 16px;
}

.savings span {
  color: var(--muted);
  font-size: 13px;
}

.ticket-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.ticket-code {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff7f0;
  border: 1.5px dashed #ffb27a;
  border-radius: 14px;
  padding: 16px;
  margin: 0 0 14px;
  cursor: pointer;
  appearance: none;
  text-align: left;
}

.ticket-code code {
  font-family: "Cascadia Mono", "Consolas", "Courier New", monospace;
  font-size: clamp(24px, 7vw, 34px);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.copy-chip {
  background: var(--orange);
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 92px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.ticket-code.copied .copy-chip {
  background: var(--ok);
}

.cta,
.sticky-cta {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease, background 0.12s ease;
}

.cta {
  width: 100%;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 17px 18px;
  font-size: 17px;
}

.cta:hover,
.sticky-cta:hover,
.ticket-code:hover {
  transform: translateY(-1px);
}

.hint,
.fine {
  margin: 12px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.proof {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.proof-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
}

.proof-item b {
  display: block;
  font-size: 15px;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted);
}

.bundle,
.steps,
.faq {
  margin-top: 28px;
}

h2 {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.bundle ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.bundle li {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.bundle li:last-child {
  border-bottom: 0;
}

.bundle .total {
  background: #fff4ea;
  font-size: 16px;
}

.steps {
  display: grid;
  gap: 10px;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
}

.num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff4ea;
  color: var(--orange-deep);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.step h3,
.step p {
  margin: 0;
}

.step p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 8px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

footer {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 250, 244, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.sticky-code {
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 15px;
}

.sticky-cta {
  margin-left: auto;
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  z-index: 20;
}

.toast[hidden] {
  display: none;
}

@media (max-width: 520px) {
  .proof {
    grid-template-columns: 1fr;
  }

  .ticket-code {
    flex-direction: column;
    align-items: stretch;
  }

  .copy-chip {
    width: 100%;
  }
}
