:root {
  --primary: #0066ee;
  --primary-dark: #0052be;
  --ink: #10233f;
  --muted: #5d6d84;
  --line: #dce8f7;
  --surface: rgba(255, 255, 255, 0.92);
  --success: #087f5b;
  --danger: #c92a2a;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f5f9ff;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 102, 238, 0.12), transparent 34rem),
    radial-gradient(circle at 90% 80%, rgba(48, 152, 255, 0.13), transparent 32rem),
    linear-gradient(145deg, #f8fbff 0%, #edf5ff 100%);
}

button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
[hidden] { display: none !important; }

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

.page-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
}

.page-glow-one { top: -14rem; right: -8rem; background: #5ba8ff; }
.page-glow-two { bottom: -16rem; left: -10rem; background: #8bc5ff; }

.promo-header,
.promo-footer {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 38px;
  object-fit: contain;
}

.back-link,
.promo-footer a {
  color: #48627f;
  font-size: 0.86rem;
  font-weight: 600;
  text-underline-offset: 4px;
}

.back-link:hover,
.promo-footer a:hover { color: var(--primary); }

.promo-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 500px);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
  width: min(1120px, calc(100% - 40px));
  min-height: calc(100vh - 150px);
  margin: 0 auto;
  padding: 54px 0 72px;
}

.promo-copy { max-width: 590px; }

.premium-pill,
.inventory-row,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.premium-pill {
  padding: 8px 12px;
  border: 1px solid rgba(0, 102, 238, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(0, 68, 160, 0.06);
}

.premium-pill svg {
  width: 15px;
  fill: #ffb21c;
  stroke: #ff9d00;
  stroke-width: 1;
}

.promo-copy h1 {
  max-width: 650px;
  margin: 24px 0 20px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.promo-copy h1 span {
  color: var(--primary);
  text-shadow: 0 12px 42px rgba(0, 102, 238, 0.18);
}

.promo-lead {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #415672;
  font-size: 0.94rem;
  line-height: 1.45;
}

.benefit-item strong { color: var(--ink); }

.benefit-icon {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: #e5f1ff;
}

.benefit-icon svg,
.trust-note svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.claim-card {
  position: relative;
  min-height: 530px;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(20, 77, 145, 0.16), inset 0 0 0 1px rgba(0, 102, 238, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.claim-card::before {
  position: absolute;
  top: 0;
  left: 14%;
  width: 72%;
  height: 3px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, transparent, #3097ff, transparent);
  content: "";
}

.inventory-row { color: var(--success); }

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #12b886;
  box-shadow: 0 0 0 5px rgba(18, 184, 134, 0.12);
}

.claim-card h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.claim-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

#claimForm { margin-top: 28px; }

.field-group { display: grid; gap: 8px; }
.field-group label { font-size: 0.84rem; font-weight: 700; }

.field-group input,
.admin-field input,
.admin-field textarea {
  width: 100%;
  border: 1px solid #cfdef0;
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field-group input {
  height: 54px;
  padding: 0 16px;
}

.field-group input:focus,
.admin-field input:focus,
.admin-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 102, 238, 0.11);
}

.field-group input[aria-invalid="true"] { border-color: var(--danger); }
.field-hint { color: #718198; font-size: 0.75rem; }

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin: 18px 0;
  color: #64748a;
  font-size: 0.76rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent-row input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--primary);
}

.consent-row a { color: var(--primary-dark); font-weight: 700; }

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.primary-button {
  width: 100%;
  color: white;
  background: linear-gradient(135deg, #0877ff, #0055d6);
  box-shadow: 0 13px 28px rgba(0, 95, 220, 0.23);
}

.primary-button:hover { background: linear-gradient(135deg, #006bea, #004ab9); }
.primary-button:disabled { opacity: 0.58; cursor: wait; box-shadow: none; }
.primary-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; }

.secondary-button {
  margin-top: 24px;
  border: 1px solid #cbdcf0;
  color: var(--primary-dark);
  background: #f7fbff;
}

.secondary-button:hover { background: #edf6ff; }

.form-message {
  min-height: 22px;
  margin-top: 12px !important;
  color: var(--danger) !important;
  font-size: 0.79rem !important;
  font-weight: 600;
  text-align: center;
}

.trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: #718198;
  font-size: 0.72rem;
  text-align: center;
}

.trust-note svg { flex: 0 0 16px; width: 16px; }

.state-panel,
.result-state {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.spinner {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 3px solid #dbeafe;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

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

.result-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 22px;
}

.result-icon svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.success-icon { color: #087f5b; background: #dff8ef; }
.empty-icon { color: var(--primary); background: #e5f1ff; }
.result-state p { max-width: 360px; }

.code-box {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 26px 0 16px;
  padding: 11px 12px 11px 18px;
  border: 1px dashed #7bb5f6;
  border-radius: 14px;
  background: #f1f8ff;
}

.code-box code {
  overflow-wrap: anywhere;
  color: #064d9d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.code-box button {
  display: inline-flex;
  min-width: 80px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 10px;
  color: white;
  background: var(--primary);
  cursor: pointer;
}

.code-box button:hover { background: var(--primary-dark); }
.code-box button svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.download-button { margin-top: 0; }

.promo-footer {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #718198;
  font-size: 0.76rem;
}

/* Admin */
.admin-body { background: #f3f7fc; }
.admin-main { position: relative; z-index: 1; width: min(1160px, calc(100% - 40px)); margin: 30px auto 80px; }
.admin-title-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.admin-title-row h1 { margin: 6px 0 0; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.05em; }
.admin-title-row p { margin: 8px 0 0; color: var(--muted); }
.campaign-library { margin-bottom: 22px; padding: 22px; border: 1px solid #dbe7f4; border-radius: 20px; background: #fff; box-shadow: 0 14px 40px rgba(40, 78, 122, 0.06); }
.campaign-library-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.campaign-library-header h2 { margin: 0 0 4px; font-size: 1.2rem; }
.campaign-library-header p { margin: 0; color: var(--muted); font-size: .82rem; }
.create-campaign-form { display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 14px; margin: 20px 0; padding: 18px; border: 1px solid #dce8f5; border-radius: 16px; background: #f7faff; }
.create-campaign-form[hidden] { display: none; }
.create-campaign-form .admin-field { margin: 0; }
.create-campaign-form .admin-message { grid-column: 1 / -1; margin: 0 !important; }
.campaign-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; margin-top: 18px; }
.campaign-loading { margin: 0; color: var(--muted); font-size: .8rem; }
.campaign-select-card { min-height: 126px; padding: 17px; border: 1px solid #dfe9f4; border-radius: 15px; color: var(--text); background: #f9fbfe; text-align: left; cursor: pointer; transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.campaign-select-card:hover { border-color: #9cc8ff; background: #f2f8ff; }
.campaign-select-card:focus-visible { outline: 3px solid rgba(0,102,238,.25); outline-offset: 2px; }
.campaign-select-card.selected { border-color: var(--primary); background: #eef6ff; box-shadow: 0 8px 22px rgba(0,102,238,.12); }
.campaign-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.campaign-card-top strong { font-size: .95rem; line-height: 1.3; }
.campaign-select-card code { display: block; margin-top: 8px; color: #35618f; font-size: .72rem; }
.campaign-card-stats { display: block; margin-top: 14px; color: var(--muted); font-size: .72rem; font-weight: 650; }
.public-badge { padding: 4px 8px; border-radius: 999px; color: #fff; background: var(--primary); font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.admin-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 22px; }
.admin-card { padding: 26px; border: 1px solid #e1eaf5; border-radius: 20px; background: white; box-shadow: 0 14px 40px rgba(40, 78, 122, 0.07); }
.admin-card h2 { margin: 0 0 6px; font-size: 1.2rem; }
.admin-card > p { margin: 0 0 20px; color: var(--muted); font-size: 0.84rem; }
.admin-stack { display: grid; gap: 22px; }
.admin-field { display: grid; gap: 7px; margin-bottom: 16px; }
.admin-field label { font-size: 0.8rem; font-weight: 700; }
.admin-field input { height: 48px; padding: 0 13px; }
.admin-field textarea { min-height: 190px; padding: 13px; resize: vertical; font-family: ui-monospace, monospace; line-height: 1.55; }
.switch-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 18px 0; }
.switch-row span { font-size: 0.86rem; font-weight: 700; }
.switch { position: relative; width: 48px; height: 28px; }
.switch input { position: absolute; opacity: 0; }
.switch-track { position: absolute; inset: 0; border-radius: 99px; background: #bac7d6; cursor: pointer; transition: background 180ms ease; }
.switch-track::after { position: absolute; top: 4px; left: 4px; width: 20px; height: 20px; border-radius: 50%; background: white; box-shadow: 0 2px 6px rgba(0,0,0,.2); content: ""; transition: transform 180ms ease; }
.switch input:checked + .switch-track { background: var(--primary); }
.switch input:checked + .switch-track::after { transform: translateX(20px); }
.switch input:focus-visible + .switch-track { outline: 3px solid rgba(0,102,238,.25); outline-offset: 2px; }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-actions .primary-button, .admin-actions .secondary-button { width: auto; min-height: 46px; margin: 0; }
.danger-button { border-color: #f0c6c6 !important; color: var(--danger) !important; background: #fff7f7 !important; }
.admin-message { min-height: 20px; margin-top: 12px !important; color: var(--success) !important; font-size: .78rem !important; font-weight: 700; }
.admin-message.error { color: var(--danger) !important; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0 10px; }
.stat-card { padding: 17px; border: 1px solid #e4edf7; border-radius: 14px; background: #f8fbff; }
.stat-card strong { display: block; font-size: 1.8rem; letter-spacing: -.04em; }
.stat-card span { color: var(--muted); font-size: .74rem; font-weight: 700; }
.protection-summary { margin: 0 0 18px !important; font-size: .75rem !important; }
.table-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.tabs { display: flex; gap: 5px; padding: 4px; border-radius: 10px; background: #eef3f9; }
.tab-button { min-height: 38px; padding: 0 13px; border: 0; border-radius: 8px; color: #64748a; background: transparent; font-size: .78rem; font-weight: 700; cursor: pointer; }
.tab-button.active { color: var(--primary-dark); background: white; box-shadow: 0 2px 8px rgba(30,70,120,.1); }
.code-table-wrap { max-height: 440px; overflow: auto; border: 1px solid #e4edf7; border-radius: 12px; }
.code-table { width: 100%; border-collapse: collapse; font-size: .78rem; }
.code-table th, .code-table td { padding: 12px; border-bottom: 1px solid #edf2f7; text-align: left; }
.code-table th { position: sticky; top: 0; color: #64748a; background: #f8fbff; font-size: .69rem; text-transform: uppercase; letter-spacing: .05em; }
.code-table code { color: #124f92; font-weight: 700; }
.code-table input { width: 17px; height: 17px; accent-color: var(--primary); }
.status-chip { display: inline-flex; padding: 4px 8px; border-radius: 99px; color: #087f5b; background: #e2f8f0; font-size: .67rem; font-weight: 800; text-transform: capitalize; }
.status-chip.claimed { color: #65511c; background: #fff3cd; }
.auth-card { max-width: 460px; margin: 12vh auto; text-align: center; }
.auth-card .brand { margin-bottom: 24px; }
.auth-card h1 { margin: 0 0 10px; font-size: 2rem; }
.auth-card p { margin: 0 0 24px; color: var(--muted); }
.auth-card .primary-button { max-width: 280px; margin: 0 auto; }
.admin-login-form { margin-top: 24px; text-align: left; }
.admin-login-form .primary-button { max-width: none; }
.admin-login-form .admin-message { text-align: center; }

@media (max-width: 900px) {
  .promo-main { grid-template-columns: 1fr; max-width: 650px; padding-top: 32px; }
  .promo-copy { text-align: center; }
  .promo-copy h1, .promo-lead { margin-left: auto; margin-right: auto; }
  .benefit-list { width: fit-content; margin-left: auto; margin-right: auto; text-align: left; }
  .admin-grid { grid-template-columns: 1fr; }
  .create-campaign-form { grid-template-columns: 1fr; align-items: stretch; }
}

@media (max-width: 560px) {
  .campaign-library { padding: 18px; }
  .campaign-library-header { align-items: flex-start; flex-direction: column; }
  .campaign-card-grid { grid-template-columns: 1fr; }
  .promo-header, .promo-footer, .promo-main, .admin-main { width: min(100% - 24px, 100%); }
  .promo-header { min-height: 70px; }
  .brand img { height: 32px; }
  .back-link { font-size: .76rem; }
  .promo-main { gap: 38px; padding: 34px 0 50px; }
  .promo-copy h1 { font-size: clamp(2.45rem, 13vw, 3.6rem); }
  .promo-lead { font-size: .96rem; }
  .benefit-list { margin-top: 28px; }
  .claim-card { min-height: 500px; padding: 28px 20px; border-radius: 22px; }
  .state-panel, .result-state { min-height: 420px; }
  .code-box { align-items: stretch; flex-direction: column; }
  .code-box button { width: 100%; }
  .footer-dot, .promo-footer a { display: none; }
  .admin-title-row { align-items: flex-start; flex-direction: column; }
  .admin-card { padding: 20px; }
  .table-toolbar { align-items: stretch; flex-direction: column; }
}

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

/* Simple public promo page */
.simple-promo-body {
  display: grid;
  min-height: 100vh;
  grid-template-rows: 1fr auto;
  background:
    radial-gradient(circle at 50% 12%, rgba(0, 102, 238, 0.11), transparent 30rem),
    #f7faff;
}

.promo-navbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 102, 238, 0.08);
  box-shadow: 0 8px 28px rgba(15, 35, 70, 0.06);
}

.simple-promo-main {
  display: grid;
  width: min(100% - 32px, 560px);
  margin: 0 auto;
  padding: 132px 0 64px;
  place-items: center;
}

.simple-promo-card {
  width: 100%;
  min-height: 520px;
  padding: clamp(32px, 7vw, 52px);
  border: 1px solid #e0ebf8;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(36, 83, 142, 0.12);
  text-align: center;
}

.simple-promo-card > div:not(.state-panel) {
  animation: simpleFadeUp 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.simple-promo-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(145deg, #1682ff, #0058cc);
  box-shadow: 0 12px 28px rgba(0, 102, 238, 0.24);
}

.simple-promo-mark svg {
  width: 27px;
  fill: currentColor;
}

.simple-premium-logo {
  display: block;
  width: 94px;
  height: auto;
  margin: 0 auto 18px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 102, 238, 0.18));
}

.simple-promo-card h1,
.simple-promo-card h2 {
  margin: 12px auto 10px;
  color: var(--ink);
  font-size: clamp(2rem, 7vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.simple-promo-description {
  max-width: 390px;
  margin: 0 auto !important;
  font-size: 0.96rem !important;
}

.simple-inventory {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  margin: 24px auto 0;
  padding: 8px 14px;
  border: 1px solid #d9ebdf;
  border-radius: 999px;
  color: #32705c;
  background: #f1fbf7;
  font-size: 0.8rem;
}

.simple-inventory strong {
  color: #087f5b;
  font-size: 1rem;
}

.simple-field {
  text-align: left;
}

.simple-promo-card #claimForm {
  margin-top: 28px;
}

.simple-promo-card .primary-button {
  margin-top: 20px;
}

.simple-success {
  min-height: 560px;
  justify-content: flex-start;
  padding-top: 4px;
}

.success-celebration {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 23px;
  background: linear-gradient(145deg, #eef6ff, #dcecff);
  box-shadow: 0 12px 28px rgba(0, 102, 238, 0.14);
  font-size: 2rem;
}

.simple-success h2 {
  margin-top: 12px;
}

.success-code-label {
  margin: 2px 0 0 !important;
  color: var(--muted);
  font-size: .88rem !important;
}

.simple-success .code-box {
  margin: 18px 0 20px;
}

.play-store-download {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #10213a, #071222);
  box-shadow: 0 12px 24px rgba(7, 18, 34, .16);
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.play-store-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(7, 18, 34, .22);
}

.play-store-download:focus-visible {
  outline: 3px solid rgba(0, 102, 238, .28);
  outline-offset: 3px;
}

.play-store-download > svg {
  width: 28px;
  height: 32px;
  flex: 0 0 28px;
}

.play-store-download > span:not(.download-arrow) {
  display: grid;
  gap: 1px;
}

.play-store-download small {
  color: rgba(255,255,255,.7);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.play-store-download strong {
  font-size: 1rem;
  line-height: 1.1;
}

.download-arrow {
  margin-left: auto;
  font-size: 1.3rem;
}

.redemption-guide {
  width: 100%;
  padding: 20px;
  border: 1px solid #dfebf8;
  border-radius: 16px;
  background: #f8fbff;
  text-align: left;
}

.redemption-guide h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: .94rem;
}

.redemption-guide ol {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.redemption-guide li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.redemption-guide li > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 9px;
  color: #ffffff;
  background: var(--primary);
  font-size: .7rem;
  font-weight: 800;
}

.redemption-guide p {
  max-width: none;
  margin: 0;
  color: #41536a;
  font-size: .8rem;
}

.success-closing {
  margin: 19px 0 0 !important;
  color: var(--ink) !important;
  font-size: .86rem !important;
  font-weight: 700;
}

.success-pop {
  animation: successPop 500ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.code-reveal {
  animation: codeReveal 520ms cubic-bezier(0.16, 1, 0.3, 1) 100ms both;
}

.simple-promo-footer {
  min-height: 58px;
}

@keyframes simpleFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes successPop {
  from { opacity: 0; transform: scale(0.72); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes codeReveal {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 560px) {
  .simple-promo-main {
    width: min(100% - 24px, 560px);
    padding: 150px 0 42px;
  }

  .simple-promo-card {
    min-height: 500px;
    padding: 34px 22px;
    border-radius: 22px;
  }

  .simple-promo-card h1,
  .simple-promo-card h2 {
    font-size: 2.15rem;
  }
}
