/* ====================================================
   DigiFinance — Global Styles
   Blue-only palette
   ==================================================== */

:root {
  --primary: #3061b3;
  --primary-dark: #244d8f;
  --primary-light: #4a7fd4;
  --primary-50: #e6edf7;
  --secondary: #4285F4;
  --secondary-50: #e8f0fe;

  --white: #ffffff;
  --white-color: #ffffff;
  --light-gray: #f7f8fa;
  --text-dark: #1a1a2e;
  --text-light: #6b7280;
  --border-color: #e2e5ea;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Roboto', system-ui, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ==================== UTILITY ==================== */
.text-center { text-align: center; }
.text-white { color: white; }
.bg-light { background: var(--light-gray); }

/* ==================== UNDER-DEVELOPMENT PAGE ==================== */
.dev-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  background: var(--light-gray);
}
.dev-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 48px;
}
.dev-logo .digi { color: var(--primary); }
.dev-logo .finance { color: var(--secondary); }
.dev-icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--primary-50);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px; color: var(--primary);
}
.dev-page h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 12px;
}
.dev-page p {
  font-size: 16px; color: var(--text-light);
  max-width: 420px; line-height: 1.7; margin-bottom: 32px;
}
.dev-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 12px; border: none;
  background: var(--primary); color: white;
  font-size: 15px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: background 0.15s;
  text-decoration: none;
}
.dev-btn:hover { background: var(--primary-dark); }
.dev-footer {
  margin-top: 64px;
  font-size: 13px; color: var(--text-light);
}
