:root {
  --background: #ffffff;
  --foreground: #0a0a0a;
  --primary: #ff7a18;
  --primary-foreground: #ffffff;
  --secondary: #f5f5f5;
  --muted: #6b7280;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
}

.page { min-height: 100vh; }
.container {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.header { text-align: center; margin-bottom: 2rem; }
.badge {
  display: inline-block;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
h1 {
  margin: 1.25rem 0 0;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
}
.accent { color: var(--primary); }

.video-wrap {
  margin-bottom: 2rem;
  border: 2px solid var(--foreground);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--foreground);
  box-shadow: 8px 8px 0 0 var(--primary);
}
.video-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-aspect video {
  width: 100%;
  height: 100%;
  background: #000;
  display: block;
}

.content > * + * { margin-top: 1.25rem; }
.content { font-size: 1rem; }
.content .strong { font-weight: 600; }

.box {
  border: 2px solid var(--foreground);
  background: var(--secondary);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.box h2 { margin: 0 0 0.75rem; font-size: 1.125rem; font-weight: 700; }
.box ul { list-style: none; padding: 0; margin: 0; }
.box li { display: flex; gap: 0.5rem; margin-top: 0.625rem; }
.box li:first-child { margin-top: 0; }
.check { color: var(--primary); font-weight: 700; }

.cta { margin-top: 2rem; }
.pay-btn {
  width: 100%;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 6px 6px 0 0 var(--foreground);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pay-btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--foreground); }
.pay-btn:active { transform: translate(6px, 6px); box-shadow: none; }
.arrow { display: inline-block; margin-left: 0.5rem; transition: transform 0.15s ease; }
.pay-btn:hover .arrow { transform: translateX(4px); }

.secure {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(0,0,0,0.6);
}

@media (min-width: 768px) {
  .container { padding: 4rem 1.25rem; }
  h1 { font-size: 2.25rem; }
  .content { font-size: 1.125rem; }
  .pay-btn { font-size: 1.25rem; }
}
