/*
Theme Name: Schneider Networking Landing
Theme URI: https://www.schneidernetworking.com/
Author: Schneider Networking
Author URI: https://www.schneidernetworking.com/
Description: Minimal landing-page theme for a network security & management firm. Includes hero, services grid, and CTA.
Version: 1.0.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sn-landing
*/
:root {
  --bg: #0f172a;
  --fg: #e5e7eb;
  --muted: #94a3b8;
  --accent: #06b6d4;
  --card: #111827;
  --card2: #0b1220;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; color: var(--fg); background: linear-gradient(180deg, var(--bg), var(--card2)); }
a { color: var(--accent); text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 24px; }
.nav { display:flex; align-items:center; justify-content:space-between; padding: 14px 0; }
.brand { font-weight: 700; letter-spacing:.4px; }
.brand span { color: var(--accent); }
.btn { display:inline-block; padding:12px 18px; border-radius:12px; background: var(--accent); color:#001018; font-weight:600; }
.btn.outline { background: transparent; color: var(--fg); border:1px solid var(--accent); }
.hero { display:grid; gap: 28px; grid-template-columns: 1.1fr 1fr; align-items:center; padding: 28px 0 14px; }
.hero h1 { font-size: clamp(28px, 4vw, 46px); line-height: 1.08; margin: 0 0 10px; }
.hero p { color: var(--muted); margin: 0 0 18px; }
.hero figure { margin:0; border-radius: 18px; overflow:hidden; box-shadow: 0 10px 35px rgba(0,0,0,.35); background:#0b0f1a; min-height: 280px; display: flex; align-items: center; justify-content: center; }
.hero img { width:100%; height:auto; display:block; }
.hero .placeholder { width: 100%; height: 100%; background: radial-gradient(1200px 400px at 10% 10%, #11203b, #090f1a); }
.badges { display:flex; gap:10px; flex-wrap:wrap; margin-top:6px; }
.badge { font-size: 12px; padding:6px 10px; border:1px solid #1f2a44; border-radius: 999px; color: #b6c3d9; background: rgba(15, 23, 42, .6); }
.grid { display:grid; gap:16px; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); margin-top: 32px; }
.card { background: rgba(17,24,39,.65); backdrop-filter: blur(6px); border:1px solid rgba(255,255,255,.06); padding:18px; border-radius:16px; }
.card h3 { margin: 0 0 6px; font-size: 18px; }
.cta { text-align:center; padding: 34px 0 12px; }
.cta h2 { margin:0 0 10px; font-size: clamp(22px, 3.4vw, 34px); }
footer { color: #8aa0b3; border-top:1px solid rgba(255,255,255,.06); margin-top: 36px; }
.footer-inner { display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; padding:18px 0; font-size:14px; }
@media (max-width: 860px) { .hero { grid-template-columns: 1fr; } }