:root {
  --plum-950: #210819;
  --plum-900: #321026;
  --plum-800: #45122f;
  --plum-700: #621a43;
  --coral: #ff626e;
  --coral-dark: #e9485a;
  --peach: #ffb59f;
  --cream: #fff8ef;
  --paper: #fffdf9;
  --ink: #28141f;
  --muted: #786771;
  --line: rgba(69, 18, 47, .13);
  --shadow: 0 24px 70px rgba(52, 16, 38, .13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

button, a { font: inherit; }

a { color: inherit; }

.ambient {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(16px);
  opacity: .55;
}

.ambient-one { top: -20rem; right: -10rem; background: rgba(255, 98, 110, .25); }
.ambient-two { bottom: -24rem; left: -15rem; background: rgba(255, 181, 159, .25); }

.site-header, main, footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--plum-800);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 850;
  letter-spacing: -.04em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand-mark, .product-coin, .coin {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, var(--coral), var(--coral-dark));
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.32), 0 10px 24px rgba(233,72,90,.25);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 800;
}

.brand-mark { width: 42px; height: 42px; }

.secure-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--plum-700);
  font-size: .88rem;
  font-weight: 700;
}

.secure-label span { color: #35a26b; font-size: .7rem; }

.hero {
  position: relative;
  min-height: 460px;
  padding: clamp(44px, 7vw, 84px);
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  overflow: hidden;
  color: white;
  border-radius: 32px;
  background:
    radial-gradient(circle at 80% 15%, rgba(255,181,159,.34), transparent 30%),
    linear-gradient(135deg, var(--plum-950), var(--plum-700));
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -75% 32%;
  height: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow { color: var(--peach); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.055em;
}

h1 em { color: var(--peach); font-weight: 500; }

.hero-message { max-width: 610px; margin-bottom: 24px; color: rgba(255,255,255,.76); font-size: 1.04rem; }

.offer-chip {
  width: fit-content;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 99px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  font-size: .82rem;
  font-weight: 750;
}

.coin-stage { position: relative; height: 290px; z-index: 1; }
.coin { position: absolute; width: 190px; height: 190px; font-size: 6rem; border: 10px solid rgba(255,255,255,.15); }
.coin-front { right: 13%; bottom: 4%; transform: rotate(11deg); animation: float 5s ease-in-out infinite; }
.coin-back { right: 38%; top: 2%; opacity: .48; transform: scale(.72) rotate(-16deg); }
.spark { position: absolute; color: var(--peach); font-size: 2rem; }
.spark-a { right: 4%; top: 7%; }
.spark-b { left: 19%; bottom: 7%; font-size: 1rem; }

@keyframes float { 50% { transform: translateY(-12px) rotate(8deg); } }

.products-section { padding: 96px 0 42px; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-heading h2, .message-card h2 {
  margin-bottom: 0;
  color: var(--plum-900);
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -.04em;
}

.section-heading > p { max-width: 440px; margin-bottom: 4px; color: var(--muted); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.product-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,253,249,.88);
  box-shadow: 0 12px 45px rgba(52,16,38,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover { transform: translateY(-4px); box-shadow: 0 22px 60px rgba(52,16,38,.12); }
.product-card.is-featured { border-color: rgba(255,98,110,.45); }
.product-card.is-disabled { opacity: .58; }
.product-coin { width: 62px; height: 62px; margin-bottom: 28px; font-size: 1.9rem; }
.product-kicker { margin-bottom: 5px; color: var(--muted); font-size: .71rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-card h3 { margin-bottom: 6px; color: var(--plum-900); font-size: 1.32rem; }
.coin-count { margin-bottom: 10px; color: var(--plum-700); font-size: 2.1rem; font-weight: 850; letter-spacing: -.05em; }
.bonus { width: fit-content; margin-bottom: 14px; padding: 5px 9px; border-radius: 8px; color: #6f4625; background: #ffe9c6; font-size: .76rem; font-weight: 800; }
.description { min-height: 48px; margin-bottom: 26px; color: var(--muted); font-size: .9rem; }
.price-row { min-height: 45px; display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.price { color: var(--plum-900); font-size: 1.72rem; }
.old-price { color: var(--muted); font-size: .9rem; text-decoration: line-through; }
.discount-badge { position: absolute; top: 20px; right: 20px; padding: 7px 10px; border-radius: 9px; color: white; background: var(--coral); font-size: .75rem; font-weight: 850; }

.button {
  width: 100%;
  min-height: 50px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 13px;
  color: white;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  box-shadow: 0 12px 24px rgba(233,72,90,.2);
  text-decoration: none;
  font-weight: 820;
  cursor: pointer;
  transition: filter .2s ease, transform .2s ease;
}

.button:hover { filter: brightness(.96); transform: translateY(-1px); }
.button:disabled { cursor: wait; opacity: .68; transform: none; }
.card-note { margin: 11px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }

.loading-card, .message-card {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--muted);
  background: var(--paper);
}

.spinner { width: 24px; height: 24px; border: 3px solid var(--line); border-top-color: var(--coral); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.error-card { justify-content: flex-start; }
.message-icon { width: 48px; height: 48px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; color: white; background: var(--coral); font-weight: 900; }
.message-card h2 { margin-bottom: 6px; font-size: 1.8rem; }
.message-card p { margin-bottom: 0; color: var(--muted); }

.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 36px 0 92px; border-top: 1px solid var(--line); }
.trust-row > div { display: flex; align-items: center; gap: 14px; padding: 16px; }
.trust-row p { margin: 0; color: var(--muted); font-size: .83rem; }
.trust-row strong { color: var(--plum-900); }
.trust-icon { width: 38px; height: 38px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--coral-dark); font-weight: 850; }

.result-view { min-height: calc(100vh - 180px); display: grid; place-items: center; padding: 40px 0 90px; }
.result-card { width: min(670px, 100%); padding: clamp(38px, 7vw, 76px); border: 1px solid var(--line); border-radius: 30px; background: var(--paper); box-shadow: var(--shadow); text-align: center; }
.result-card h1 { margin-bottom: 18px; font-size: clamp(2.5rem, 6vw, 4.2rem); }
.result-card > p:not(.eyebrow) { color: var(--muted); }
.result-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 26px; border-radius: 50%; color: white; background: #35a26b; font-size: 2rem; font-weight: 850; }
.progress-line { height: 5px; margin: 30px 0; overflow: hidden; border-radius: 5px; background: var(--line); }
.progress-line span { display: block; width: 35%; height: 100%; border-radius: inherit; background: var(--coral); animation: progress 1.6s ease-in-out infinite alternate; }
@keyframes progress { to { transform: translateX(185%); } }
.secondary-button { margin-top: 28px; color: var(--plum-800); background: transparent; border: 1px solid var(--line); box-shadow: none; }

footer { padding: 34px 0 45px; display: grid; grid-template-columns: 1fr auto; gap: 18px 30px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
footer strong { color: var(--plum-900); }
footer nav { display: flex; gap: 18px; }
footer p { grid-column: 1 / -1; margin: 0; }

@media (max-width: 860px) {
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .coin-stage { position: absolute; inset: 15% -11% auto auto; width: 45%; opacity: .42; }
  .hero-copy { max-width: 80%; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { align-items: start; flex-direction: column; }
  .trust-row { grid-template-columns: 1fr; }
}

@media (max-width: 590px) {
  .site-header, main, footer { width: min(100% - 24px, 1180px); }
  .site-header { min-height: 72px; }
  .secure-label { font-size: 0; }
  .secure-label span { font-size: .8rem; }
  .hero { padding: 38px 26px 46px; border-radius: 22px; }
  .hero-copy { max-width: 100%; }
  .coin-stage { display: none; }
  h1 { font-size: 3.15rem; }
  .products-section { padding-top: 64px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { padding: 28px; }
  .trust-row { padding-bottom: 64px; }
  footer { grid-template-columns: 1fr; }
  footer nav { flex-wrap: wrap; }
}

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