:root {
    --bg: #061127;
    --bg-2: #091a38;
    --pink: #ff2f87;
    --orange: #ff9857;
    --paper: #f8f2ee;
    --text: #ffffff;
    --muted: #bfc9db;
    --line: rgba(255, 255, 255, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Arial, Helvetica, sans-serif; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.home-shell, .nav-shell, .section, .form-wrap {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section { padding: 52px 0; }
.muted { color: var(--muted); }
