/* ==========================================================================
   Lockewise - Variables & Reset
   Created: June 20, 2025
   ========================================================================== */

:root {
  /* Dark theme color palette */
  --dark-blue: #000000;
  --light-blue: #3b82f6;
  --accent-blue: #60a5fa;
  --mint-green: #10b981;
  --accent-green: #34d399;
  --light-gray: #1a1a1a;
  --medium-gray: #333333;
  --dark-gray: #4b5563;
  --text-color: #ffffff;
  --dark-text: #e0e0e0;
  --primary-color: #3b82f6;
  --secondary-color: #10b981;
  --accent-color: #f43f5e;
  --primary-gradient: #3b82f6;
  --secondary-gradient: #10b981;
  --accent-gradient: #f43f5e;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --gradient-primary: #3b82f6;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global Styles */
body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    sans-serif;
  color: var(--text-color);
  background-color: #000000;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
  scroll-behavior: smooth;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Global style for spans */
h1 span,
h2 span,
h3 span,
p span {
  color: #3b82f6;
  position: relative;
}

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

section {
  padding: 5rem 1rem;
}

/* Section titles */
.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}
