/* ITJosh - Modern single-page site
   Color tones matched to your logo: deep azure / navy, cool gray background, crisp white.
*/

:root{
  --bg: #0b1220;
  --bg2: #0f1a31;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);

  --brand: #1f5fbf;   /* azure-blue */
  --brand2: #0e2f66;  /* navy */
  --brand3: #2b7bff;  /* accent blue */

  --ring: rgba(43,123,255,.55);
  --border: rgba(255,255,255,.10);
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius: 18px;

  --max: 1120px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font);
  background: radial-gradient(1200px 800px at 12% 10%, rgba(31,95,191,.25), transparent 60%),
              radial-gradient(900px 600px at 88% 18%, rgba(14,47,102,.35), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2) 55%, var(--bg));
  color: var(--text);
  line-height: 1.55;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: 12px;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left: 18px;
  top: 14px;
  width:auto;height:auto;
  padding:10px 12px;
  background: rgba(0,0,0,.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  z-index: 9999;
}

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(11,18,32,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-elevated{
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  background: rgba(11,18,32,.78);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand-logo{
  height: 44px;
  width: auto;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.35));
}
.nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav-menu{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav-menu a{
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .15s ease, color .15s ease;
}
.nav-menu a:hover{
  color: var(--text);
  background: rgba(255,255,255,.05);
}
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 600;
  letter-spacing: .2px;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.06); }
.btn:active{ transform: translateY(0); }

.btn-primary{
  border-color: rgba(43,123,255,.35);
  background: linear-gradient(135deg, rgba(31,95,191,.95), rgba(43,123,255,.85));
  box-shadow: 0 14px 36px rgba(31,95,191,.22);
}
.btn-primary:hover{ background: linear-gradient(135deg, rgba(31,95,191,1), rgba(43,123,255,.92)); }
.btn-ghost{
  background: rgba(255,255,255,.03);
}
.btn-full{ width: 100%; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
}
.eyebrow::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand3), rgba(255,255,255,.18));
  box-shadow: 0 0 0 4px rgba(43,123,255,.15);
}

/* Hero */
.hero{
  position: relative;
  padding: 76px 0 44px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 22% 30%, rgba(31,95,191,.35), transparent 60%),
    radial-gradient(900px 520px at 78% 22%, rgba(14,47,102,.55), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 40%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
}
.hero-copy h1{
  margin: 12px 0 12px;
  font-size: clamp(2.0rem, 4vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.subhead{
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 56ch;
}
.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 18px;
}
.trust-row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.pill{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.78);
  font-weight: 600;
  font-size: .88rem;
}

.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.hero-card-top{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 12px;
}
.hero-mark{
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.mini-title{ margin:0; font-weight: 700; }
.mini-sub{ margin: 2px 0 0; color: var(--muted); font-size: .95rem; }

.checklist{
  list-style:none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 10px;
}
.checklist li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
}
.check{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(43,123,255,.18);
  border: 1px solid rgba(43,123,255,.35);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  flex: 0 0 auto;
}
.hero-card-bottom{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.stat{
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.stat-num{ font-size: 1.15rem; font-weight: 800; }
.stat-label{ color: var(--muted2); font-size: .9rem; margin-top: 2px; }

/* Sections */
.section{ padding: 64px 0; }
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.00) 35%, rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-head{
  margin-bottom: 20px;
  max-width: 78ch;
}
.section-head h2{
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  letter-spacing: -0.02em;
}
.muted{ color: var(--muted); }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.card h3{ margin: 12px 0 8px; }
.card p{ margin: 0 0 12px; color: rgba(255,255,255,.78); }
.card-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(43,123,255,.14);
  border: 1px solid rgba(43,123,255,.28);
}
.card-icon svg{ width: 22px; height: 22px; color: rgba(255,255,255,.92); }
.bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.78);
}
.bullets li{ margin: 6px 0; }

.focus-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:start;
}
.tag-grid{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 14px;
}
.tag{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.78);
  font-weight: 600;
  font-size: .9rem;
}
.callout{
  border-radius: var(--radius);
  border: 1px solid rgba(43,123,255,.28);
  background: linear-gradient(135deg, rgba(43,123,255,.12), rgba(255,255,255,.03));
  padding: 16px;
}
.callout h3{ margin: 0 0 6px; }
.callout p{ margin: 0; color: rgba(255,255,255,.78); }

.panel{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 18px;
}
.outcomes{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display:grid;
  gap: 10px;
}
.outcomes li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
}
.outcomes li span{
  width: 26px; height: 26px;
  border-radius: 10px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(43,123,255,.16);
  border: 1px solid rgba(43,123,255,.28);
  flex: 0 0 auto;
}
.divider{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 16px 0;
}
.certs{ display:flex; flex-wrap:wrap; gap: 10px; }
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 700;
  color: rgba(255,255,255,.80);
}

/* About */
.two-col{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items:start;
}
.two-col h2{ margin-top: 0; }
.about-card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 18px;
}
.specs{
  list-style:none;
  padding: 0;
  margin: 12px 0 0;
  display:grid;
  gap: 10px;
}
.specs li{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,.08);
}
.specs span{ color: var(--muted2); font-weight: 600; }
.specs strong{ font-weight: 800; }

/* Support */
.support-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
.support-card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
}
.policy{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.78);
}
.policy li{ margin: 10px 0; }
.fineprint{
  color: rgba(255,255,255,.62);
  font-size: .92rem;
  margin-top: 12px;
}

/* Footer */
.site-footer{
  padding: 34px 0 24px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-left{ display:flex; align-items:center; gap: 14px; }
.footer-logo{ height: 34px; width:auto; opacity: .95; }
.footer-right{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content:flex-end;
}
.footer-right a{
  color: rgba(255,255,255,.72);
  padding: 8px 10px;
  border-radius: 12px;
}
.footer-right a:hover{ background: rgba(255,255,255,.05); color: rgba(255,255,255,.92); }
.footer-bottom{ padding-top: 14px; }
.footer-bottom .fineprint{ margin:0; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .focus-grid{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .support-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .nav-toggle{ display:block; }
  .nav-menu{
    position: absolute;
    right: 20px;
    top: 66px;
    width: min(360px, calc(100vw - 40px));
    display:none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(11,18,32,.95);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open{ display:flex; }
  .nav-menu a{ padding: 12px 12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ transition: none !important; }
}
