/* Base page styles - shared across landing pages */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --red: #ff0033; --red-glow: rgba(255, 0, 51, 0.8);
  --orange: #ff6b35; --bg-dark: #0a0a0a; --bg-panel: #111111;
  --text-primary: #ffffff; --text-secondary: #808080; --text-dim: #4a4a4a;
}
body {
  background: var(--bg-dark); color: var(--text-primary);
  font-family: 'Share Tech Mono', monospace; line-height: 1.6; overflow-x: hidden;
}
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999;
}
.page-hero {
  padding: 6rem 2rem 4rem; max-width: 1100px; margin: 0 auto;
}
.page-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.5rem; }
.page-title .highlight { color: var(--red); text-shadow: 0 0 30px var(--red-glow); }
.page-subtitle { color: var(--text-secondary); font-size: 1.15rem; margin-bottom: 3rem; line-height: 1.7; }
.section-block { margin-bottom: 3.5rem; }
.section-block h2 { font-size: 1.25rem; color: var(--red); margin-bottom: 1.25rem; letter-spacing: 0.08em; }
.section-block p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.8; }
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}
.feature-card {
  padding: 2rem; background: var(--bg-panel); border: 1px solid rgba(255, 0, 51, 0.2);
  transition: all 0.3s ease;
}
.feature-card:hover { border-color: var(--red); box-shadow: 0 0 25px rgba(255, 0, 51, 0.2); transform: translateY(-3px); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--red); }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }
.cta-block { text-align: center; margin: 4rem 0 3rem; }
.cta-block .cta-btn {
  display: inline-block; padding: 1.25rem 2.5rem; border: 2px solid var(--red); color: var(--red);
  text-decoration: none; font-size: 1rem; transition: all 0.3s ease;
}
.cta-block .cta-btn:hover { background: var(--red); color: var(--bg-dark); box-shadow: 0 0 40px var(--red-glow); transform: translateY(-3px); }
.footer { text-align: center; padding: 2rem; color: var(--text-dim); font-size: 0.8rem; border-top: 1px solid rgba(255, 0, 51, 0.15); margin-top: 3rem; }
@media (max-width: 700px) {
  .page-hero { padding: 5rem 1rem 3rem; padding-top: max(5rem, env(safe-area-inset-top, 0px) + 4rem); }
  .page-title { font-size: clamp(1.5rem, 6vw, 2.5rem); }
  .page-subtitle { font-size: 1rem; margin-bottom: 2rem; }
}
