 :root {
     --ink: #111827;
     --muted: #667085;
     --brand: #e50914;
     --brand-dark: #ad0710;
     --gold: #f7b733;
     --teal: #12b886;
     --panel: #ffffff;
     --soft: #f7f8fb;
     --line: rgba(17, 24, 39, .1);
     --shadow: 0 18px 45px rgba(17, 24, 39, .12);
 }

 * {
     box-sizing: border-box;
 }

 body {
     font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     color: var(--ink);
     background: #fff;
     overflow-x: hidden;
 }

 html {
     scroll-behavior: smooth;
 }