/* Trade Pulse Technologies — Base Styles
   Design: Dark trading theme, gold accents, modern glassmorphism */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #0a0e17;
    --secondary: #1a1e2a;
    --accent: #ffcc33;
    --glow: #4f46e5;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --bg: #05070a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --danger: #ef4444;
    --success: #16a34a;
    --warning: #d97706;
    --info: #2563eb;
    --radius: 12px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
    --shadow: 0 10px 30px rgba(0,0,0,0.3);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    transition: var(--transition);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    font-weight: 800;
    line-height: 1.2;
}

p {
    margin: 0 0 1rem;
    color: var(--text-muted);
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--accent);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
