:root {
  --ink: #17202a;
  --muted: #53616f;
  --line: #d8e0e7;
  --paper: #ffffff;
  --soft: #f3f7f8;
  --navy: #132f45;
  --teal: #0f7c80;
  --gold: #b98b22;
  --green: #2f6f4e;
  --shadow: 0 18px 45px rgba(19, 47, 69, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 1.14rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 6px 16px rgba(19, 47, 69, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav .active {
  color: var(--teal);
}

.nav-cta {
  padding: 9px 14px;
  color: #fff !important;
  background: var(--navy);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 28, 43, 0.92) 0%, rgba(10, 28, 43, 0.77) 42%, rgba(10, 28, 43, 0.25) 100%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 56px 0 96px;
  color: #fff;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 4.8vw, 5.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  font-size: 1.18rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--teal);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.section {
  padding: 80px 0;
}

.band {
  padding: 72px 0;
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.intro h2,
.section-heading h2,
.split h2,
.service-list h2,
.contact-panel h2,
.deliverable-grid h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.two-column,
.split,
.deliverable-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 48px;
  align-items: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-height: 220px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.25;
}

.card a,
.text-link {
  color: var(--teal);
  font-weight: 800;
}

.brand-showcase {
  width: min(420px, 100%);
  margin: 28px 0 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.credentials-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.credential-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 310px;
  padding: 22px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.credential-card img {
  width: min(150px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 18px;
}

.credential-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.2;
}

.credential-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.credential-link {
  margin-top: 14px;
  color: var(--teal);
  font-weight: 800;
}

.text-credential {
  justify-content: center;
}

.google-ai-mark {
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  margin-bottom: 26px;
  color: #fff;
  background: conic-gradient(from 35deg, #4285f4, #34a853, #fbbc04, #ea4335, #4285f4);
  border-radius: 50%;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 12px #fff, 0 0 0 1px var(--line);
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.audience-grid,
.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.audience-grid a,
.topic-grid span {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 16px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.page-hero {
  padding: 92px 0 76px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(19, 47, 69, 0.96), rgba(15, 124, 128, 0.9)),
    url("../images/cybersecms-hero.png") center/cover;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.16rem;
}

.service-list {
  display: grid;
  gap: 24px;
}

.service-list article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.panel,
.contact-panel {
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cta-band {
  padding: 46px 0;
  color: #fff;
  background: var(--navy);
}

.cta-band h2 {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hidden-field {
  display: none;
}

.site-footer {
  padding: 34px 0;
  color: #dfe9ee;
  background: #102536;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 26px;
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer a {
  display: inline-block;
  margin-left: 18px;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 28, 43, 0.94), rgba(10, 28, 43, 0.68));
  }

  .hero-content {
    width: min(680px, calc(100% - 36px));
    margin: 0 auto;
  }

  .two-column,
  .split,
  .deliverable-grid,
  .contact-layout,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid,
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.15rem;
  }

  .section,
  .band {
    padding: 54px 0;
  }

  .audience-grid,
  .topic-grid,
  .credential-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    display: grid;
  }

  .site-footer a {
    margin: 0 16px 0 0;
  }
}

/* CyberSecMS school district readiness updates */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.founder-section {
  padding-top: 72px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 34px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.founder-card h2,
.why-section h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
}

.compact-list {
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.highlight-card {
  border-color: rgba(185, 139, 34, 0.45);
  background: linear-gradient(180deg, #fff, #fff9eb);
}

.small-card {
  min-height: 170px;
}

@media (max-width: 1100px) {
  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .founder-card,
  .card-grid.four {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .trust-strip span {
    width: 100%;
    justify-content: center;
  }
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 34px;
  align-items: start;
}

.capability-main,
.capability-panel {
  background: #fff;
}

.capability-main {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.capability-main h2,
.capability-panel h2 {
  color: var(--navy);
  line-height: 1.15;
}

.capability-logo {
  display: block;
  width: min(340px, 100%);
  margin: 0 0 24px;
}

.print-button {
  width: 100%;
  margin-top: 14px;
}

@media (max-width: 900px) {
  .capability-layout {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-header,
  .site-footer,
  .print-button {
    display: none !important;
  }

  .page-hero {
    padding: 24px 0;
    color: #000;
    background: #fff;
  }

  .section {
    padding: 24px 0;
  }

  .capability-main,
  .contact-panel {
    box-shadow: none;
  }
}
