:root {
  --rage-red: #DD261E;
  --ink-black: #1C1C1E;
  --white: #FFFFFF;
  --smoke: #F2F2F2;
}
* { box-sizing: border-box; }
html, body { 
  margin: 0; 
  padding: 0; 
  background: #fafafa; 
  color: var(--ink-black); 
  font-family: Arial, Helvetica, sans-serif; 
}
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}
.page {
  width: 9in;
  height: 11in;
  box-sizing: border-box;
  padding: 0.4in 0.65in 0.45in;
  display: flex;
  flex-direction: column;
  gap: 0.18in;
  position: relative;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.hero {
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 0.24in 0.28in;
  background: var(--smoke);
  display: flex;
  gap: 0.22in;
  align-items: center;
}
.hero .logo { width: 120px; height: auto; object-fit: contain; opacity: 0.98; flex-shrink: 0; }
.hero .content { flex: 1; }
.hero h2 {
  margin: 0 0 8px 0;
  font-size: 34px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero p { margin: 0; font-size: 16px; line-height: 1.35; }
.hero .hero-sub { margin-top: 6px; font-size: 15px; }
.grid {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.12in 0;
}
.qrbox {
  padding: 0.18in 0.18in;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.qrbox .scan { margin: 0; font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; }
.qr { width: 2.2in; height: 2.2in; object-fit: contain; }
.url { margin: 0; font-size: 14px; font-weight: 700; }
.url code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 13px; }
.qr-note { margin: 8px 0 0 0; font-size: 13px; font-weight: 700; }
.benefits {
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 0.2in 0.28in;
  background: var(--smoke);
}
.benefits h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--rage-red);
}
.benefits ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}
.benefits li {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.3;
  position: relative;
  padding-left: 18px;
}
.benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rage-red);
  font-weight: 900;
}
.cta {
  margin-top: auto;
  padding: 0.2in 0.28in;
}
.cta .left { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.cta .left p { margin: 0; font-size: 12px; line-height: 1.3; }
.cta .warning { font-size: 11px; line-height: 1.35; }
.cta .warning-icon { 
  color: var(--rage-red); 
  font-size: 16px; 
  font-weight: 900;
  font-family: Arial, Helvetica, sans-serif;
}
.cta .value-prop { font-size: 12px; line-height: 1.3; }
.actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.actions button, .actions a {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.actions button {
  background: var(--rage-red);
  color: var(--white);
}
.actions a {
  background: var(--white);
  color: var(--ink-black);
  border: 2px solid var(--ink-black);
}
@media (max-width: 768px) {
  .page {
    width: 100%;
    height: auto;
    min-height: 11in;
  }
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero .logo {
    width: 100px;
  }
  .hero h2 {
    font-size: 28px;
  }
  .qr {
    width: 180px;
    height: 180px;
  }
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media print {
  body { background: var(--white); }
  .page-wrapper { 
    padding: 0; 
    min-height: 0; 
    display: block;
  }
  .page { 
    box-shadow: none;
    width: 9in !important;
    height: 11in !important;
    min-height: 11in !important;
    margin: 0;
    page-break-after: avoid;
  }
  .actions { display: none; }
  @page { 
    size: 9in 11in; 
    margin: 0; 
  }
}
