
:root {
 --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
 --accent: #3a80d8;
 --primary: #3a80d8;
 --primary-hover: #2c66b8;
 --success: #22c55e;
 --warning: #f8714a;
 --gold: #facc15;
 --muted: #9ca3af;
 --text: #e5e7eb;
 --bg: #121212;
 --surface: #1f2937;
 --surface-light: #374151;
 --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
 --radius: 0.5rem;
}


.app-product .product-wrap {
 max-width: 900px;
 margin: 0 auto;
 padding: 1.5rem 1rem 2.5rem;
 box-sizing: border-box;
}
.app-product h1 { margin-bottom: 0.25rem; }
.product-hero {
 font-size: 1.1rem;
 color: var(--text);
 text-align: center;
 max-width: 42rem;
 margin: 0 auto 2rem;
}
.product-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 1.5rem;
 margin-bottom: 1.5rem;
}
.product-column h2 { margin-top: 0; }
.product-column ul {
 margin: 0;
 padding-left: 1.15rem;
 display: flex;
 flex-direction: column;
 gap: 0.5rem;
}
.product-anyone {
 color: var(--muted);
 text-align: center;
 margin: 0 0 1.5rem;
}
.product-ctas {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 0.75rem;
}
@media (max-width: 700px) {
 .product-grid { grid-template-columns: 1fr; }
}
