* { box-sizing: border-box; }
:root {
  font-family: Arial, Helvetica, sans-serif;
  color: #fafafa;
  background: #09090b;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
}
body { margin: 0; min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; }
.container { width: 100%; max-width: 1200px; flex: 1 0 auto; margin: 0 auto; padding: 40px 32px; }
header { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 32px; }
h1 { margin: 0; font-size: 36px; line-height: 1.2; letter-spacing: -1.2px; }
header span { font-size: 14px; color: #a1a1aa; }
main { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
section { min-width: 0; }
.intro { grid-column: 1 / -1; margin-bottom: 8px; }
.intro h2 { font-size: 24px; font-weight: 500; letter-spacing: -.5px; }
.intro p { max-width: 600px; margin-bottom: 0; }
h2 { margin: 0 0 12px; font-size: 15px; line-height: 1.5; font-weight: 500; }
ul { list-style: none; margin: 0; padding: 0; border: 1px solid #303036; border-radius: 6px; overflow: hidden; }
li { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; padding: 18px 20px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 17px; line-height: 1.5; background: #111114; }
li strong { font-weight: 500; white-space: nowrap; }
.bundle { background: #1b1b20; }
.pricing-note { margin: 12px 0; font-size: 13px; }
.offer-link { font-size: 14px; text-underline-offset: 4px; }
li + li { border-top: 1px solid #303036; }
.contact-panel { padding: 20px; background: #111114; border: 1px solid #303036; border-radius: 6px; }
p { margin: 0 0 20px; color: #a1a1aa; font-size: 15px; line-height: 1.6; }
a { color: inherit; }
.email { font-size: 15px; overflow-wrap: anywhere; text-underline-offset: 4px; text-decoration-color: #71717a; line-height: 1.6; }
.email:hover { text-decoration-color: #fafafa; }
.button { display: block; margin-top: 12px; padding: 14px 20px; border-radius: 6px; background: #fafafa; color: #18181b; text-align: center; font-size: 15px; font-weight: 600; text-decoration: none; }
.button:hover { background: #dedee3; }
a:focus-visible { outline: 2px solid #a1a1aa; outline-offset: 5px; }
footer { flex-shrink: 0; padding: 18px 20px calc(18px + env(safe-area-inset-bottom, 0px)); background: #09090b; color: #a1a1aa; font-size: 13px; line-height: 1.5; text-align: center; }
@media (max-width: 640px) {
  .container { padding: 28px 20px; }
  header { align-items: flex-start; flex-direction: column; gap: 8px; margin-bottom: 28px; }
  h1 { font-size: 32px; }
  main { grid-template-columns: 1fr; gap: 28px; }
}
