/* CSS BY STEVE & SAMMY */
/* IMPORTED FONTS */
/* (Optional) Add your preferred Google Fonts import here */

/* CSS RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

/* ROOT VARIABLES */
:root {
  --bg: #0E141B;
  --panel: #121C26;
  --muted: #0B1117;
  --text: #EAF2FA;
  --sub: #B8C7D9;
  --accent: #3BA3FF;   /* blue */
  --accent-2: #7A8C9E; /* gray */
  --ok: #3AD29F;       /* green */
  --danger: #FF6B6B;   /* red */
  --radius: 16px;
  --shadow: 0 6px 28px rgba(0,0,0,.35);
}

/* GLOBAL STYLES (mobile first/small) */
html { background: var(--bg); color: var(--text); }
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif; line-height: 1.6; }

.container { width: min(1100px, 92%); margin-inline: auto; }

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

.site-header {
  background: linear-gradient(180deg, rgba(12,18,25,.9), rgba(12,18,25,.7));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #1c2733;
  position: sticky; top: 0; z-index: 50;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); }
.brand img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); }

.site-nav a { padding: 8px 12px; border-radius: 10px; display: inline-block; }
.site-nav a.active, .site-nav a:hover { background: var(--panel); text-decoration: none; }

.section { padding: 56px 0; }
.section.muted { background: var(--muted); }
h1, h2, h3 { line-height: 1.15; }
h1 { font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: .3px; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); margin-bottom: 14px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }
.lede { color: var(--sub); margin-bottom: 18px; }

.hero { padding: 32px 0 12px; border-bottom: 1px solid #1c2733; }
.hero .container { display: grid; gap: 20px; align-items: center; }
.hero-copy p { color: var(--sub); margin: 8px 0 18px; }
.hero-media { border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 10px 16px; border-radius: 999px; border: 1px solid #2a3a49;
  background: var(--panel); color: var(--text); text-align: center; font-weight: 600; box-shadow: var(--shadow);
}
.btn.primary { background: var(--accent); border-color: transparent; color: #04121E; }
.btn.ghost { background: transparent; }
.btn.xl { padding: 14px 22px; font-size: 1.05rem; }

.grid-2 { display: grid; gap: 18px; }
.card {
  background: var(--panel); border: 1px solid #1c2733; border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow);
}
.stat-card ul { list-style: none; }
.stat-card li + li { margin-top: 6px; }

.checklist { margin-top: 10px; padding-left: 1.25rem; }
.checklist li { margin: 6px 0; }

.certs-grid {
  display: grid; gap: 14px;
}
.cert { background: var(--panel); padding: 16px; border: 1px solid #1c2733; border-radius: var(--radius); }
.cert h3 { margin-bottom: 6px; }

.cards { display: grid; gap: 14px; }
.program ul { padding-left: 1.1rem; }
.program li { margin: 6px 0; }

.quotes { display: grid; gap: 14px; }
blockquote { font-size: 1.05rem; }
figcaption { color: var(--sub); font-size: .95rem; margin-top: 6px; }

.cta { text-align: center; }
.cta .note { color: var(--sub); margin-top: 8px; }

.site-footer { padding: 24px 0; border-top: 1px solid #1c2733; background: #0c1219; }
.site-footer .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-nav a { opacity: .9; }
.footer-nav a + a { margin-left: 12px; }

/* MEDIA QUERY (medium) */
@media (min-width: 720px) {
  .hero .container { grid-template-columns: 1.2fr 1fr; }
  .grid-2 { grid-template-columns: 1.2fr .8fr; }
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); }
}

/* MEDIA QUERY (large) */
@media (min-width: 1024px) {
  .hero { padding: 64px 0 24px; }
  .section { padding: 72px 0; }
}

/* MEDIA QUERY (xl) */
/* add any large-screen refinements here */
