:root {
  --primary-blue: #0a2342;
  --accent-blue: #007bff;
  --light-gray: #f8f9fa;
  --dark-text: #333;
  --gentle-radius: 0.6rem;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-blue);
}

.section-padding { padding: 80px 0; }

/* Components */
.btn { border-radius: var(--gentle-radius); font-weight: 600; padding: 0.75rem 1.5rem; letter-spacing: 0.5px; }
.btn-primary { background-color: var(--accent-blue); border-color: var(--accent-blue); }
.btn-primary:hover { background-color: #0069d9; border-color: #0062cc; }

.card {
  border: 0;
  border-radius: var(--gentle-radius);
  box-shadow: 0 6px 22px rgba(16, 24, 40, 0.06);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08); }

.card-title { color: #0b1f3a; letter-spacing: .2px; }

.form-control { border-radius: var(--gentle-radius); }
.form-control:focus { border-color: var(--accent-blue); box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

/* Navbar */
.navbar { box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); }
.navbar-brand { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary-blue) !important; }

/* Hero */
.hero-section { background-color: var(--primary-blue); padding: 100px 0; }
.hero-section h1 { font-size: 3.0rem; font-weight: 700; color: #fff; }
.hero-section .lead { font-size: 1.25rem; color: rgba(255,255,255,0.85); }
.text-muted-hero { color: rgba(255,255,255,0.6) !important; }

/* Badges */
.badge-custom {
  background-color: #e6f2ff;
  color: var(--primary-blue);
  padding: 0.6em 1.2em;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--gentle-radius);
}

/* Features */
.feature-card { text-align: center; }
.feature-icon {
  height: 44px;
  width: 44px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--accent-blue);
  font-size: 1.2rem;
}

/* Contact reveal tiles */
.contact-direct .reveal-tile {
  border: 1px solid #e9ecef;
  border-radius: var(--gentle-radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  background: #fff;
  min-height: 64px;
}
.reveal-tile .label { font-weight: 700; color: var(--primary-blue); }

.reveal-btn {
  border: 0;
  background: transparent;
  font-weight: 700;
  color: var(--accent-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-width: 220px;
  min-height: 48px;
}
.reveal-btn .spoofed {
  color: var(--accent-blue);
  opacity: 0.95;
  transition: filter .25s ease, opacity .25s ease;
  line-height: 1.1;
}
.reveal-btn .blurred {
  filter: blur(5px);
  -webkit-filter: blur(5px);
  user-select: none;
}
.reveal-btn .hint {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-blue);
  opacity: 0.9;
  margin-top: 6px;
}
.reveal-btn.revealed .spoofed { filter: none; -webkit-filter: none; opacity: 1; }
.reveal-btn.revealed .hint { display: none; }

/* Contact */
#contact { background-color: var(--light-gray); position: relative; }
.confetti-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Footer */
footer { background-color: var(--primary-blue); color: #fff; }

/* Honeypot (keep visible off-screen for a11y readers but not users) */
.hp-field { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Margin Helper */
.mr { margin-right: 2px; }

/* Small tweaks */
@media (max-width: 576px) {
  .hero-section h1 { font-size: 2.2rem; }
}
