:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-alt: #eef3f9;
  --ink: #10233d;
  --muted: #4b5e78;
  --brand: #9ef01a;
  --brand-deep: #2F5D44;
  --ring: rgba(47, 93, 68, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff 0%, #eff4fb 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    radial-gradient(560px 180px at 12% -45%, rgba(19, 84, 163, 0.16), transparent 70%),
    rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #dbe5f2;
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #2F5D44;
}

.brand-letter {
  transition: color 0.15s ease;
}

.brand-letter:hover {
  color: #2F5D44;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid #b7d0ed;
  background: linear-gradient(145deg, #f8fbff 0%, #edf4ff 100%);
  color: #173b62;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

.menu-toggle:hover {
  border-color: #8cb6e6;
}

.menu-toggle-icon {
  width: 16px;
  height: 11px;
  display: inline-grid;
  gap: 3px;
}

.menu-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #2F5D44;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem;
  border: 1px solid #c9daef;
  border-radius: 999px;
  background: linear-gradient(145deg, #f8fbff 0%, #edf4ff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 8px 18px rgba(18, 52, 94, 0.1);
}

.menu a {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  color: #1f3a5a;
  transform: translateY(0);
  transition: 0.2s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  inset: auto 18% 0.3rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6aa6ff 0%, #1bbf83 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.menu a:hover {
  border-color: #a9c5e7;
  background: #fafdff;
  transform: translateY(-1px);
}

.menu a:hover::after {
  transform: scaleX(1);
}

.menu a.active {
  color: #10365e;
  border-color: #9ebde2;
  background: linear-gradient(145deg, #eaf3ff 0%, #dbeafe 100%);
  box-shadow: 0 4px 10px rgba(13, 81, 167, 0.12);
}

.menu a.active::after {
  background: #2F5D44;
  transform: scaleX(1);
}

.menu-scrim {
  display: none;
}

.site-nav.nav-open .menu {
  transform: none;
}

.site-nav.nav-open .menu-scrim {
  display: none;
}

body.nav-open {
  overflow: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2.7rem;
}

.hero::before {
  content: "";
  position: absolute;
  left: -14%;
  right: -14%;
  top: -175px;
  height: 330px;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(13, 110, 253, 0.12) 50%, transparent 50%),
    linear-gradient(rgba(224, 79, 47, 0.12) 50%, transparent 50%),
    radial-gradient(420px 140px at 20% 18%, rgba(13, 110, 253, 0.22), transparent 72%),
    radial-gradient(420px 140px at 80% 18%, rgba(224, 79, 47, 0.2), transparent 72%);
  background-size: 46px 46px, 46px 46px, auto, auto;
  transform: perspective(900px) rotateX(58deg) scale(1.55);
  transform-origin: top center;
  opacity: 0.55;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 1rem;
  font-size: 0.78rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  max-width: 16ch;
}

.page-title-light {
  color: #f3f8ff;
}

.security-word {
  color: #2F5D44;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: var(--brand-deep);
}

.btn-primary:hover {
  background: var(--brand-deep);
}

.btn-secondary {
  background: var(--surface);
  border-color: #d7e0ec;
}

.btn-secondary:hover {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--ring);
}

.metrics {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2.2rem;
}

.metric {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid #dbe5f2;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease,
    box-shadow 0.2s ease;
}

.metric strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
}

.metric:hover {
  transform: translateY(-4px);
  border-color: #2F5D44;
  background: linear-gradient(180deg, #ffffff 0%, #f4ffe3 100%);
  box-shadow: 0 12px 22px rgba(160, 67, 36, 0.2);
}

.section {
  padding: 2.5rem 0;
}

.band {
  background: var(--surface-alt);
  border-top: 1px solid #dbe5f2;
  border-bottom: 1px solid #dbe5f2;
}

.section h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 0 0 0.65rem;
}

.section-intro {
  color: var(--muted);
  max-width: 72ch;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid #d8e4f2;
  padding: 1.15rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease,
    background 0.22s ease;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.06rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #95c0f5;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  box-shadow: 0 14px 26px rgba(13, 56, 112, 0.16);
}

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

.offerings-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.services-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(11, 83, 170, 0.16), transparent 70%),
    radial-gradient(680px 240px at 100% 100%, rgba(27, 191, 131, 0.15), transparent 72%),
    linear-gradient(180deg, #f9fcff 0%, #edf5ff 100%);
  border-top: 1px solid #d5e5fa;
  border-bottom: 1px solid #d5e5fa;
}

.services-showcase .container {
  position: relative;
}

.services-showcase h2 {
  color: #2F5D44;
}

.services-showcase .section-intro {
  color: #385571;
}

.services-showcase .offering-card {
  border-top: 3px solid #cfe88a;
}

.services-showcase .offering-card:hover {
  border-top-color: #2F5D44;
}

.why-highlight {
  position: relative;
  background:
    radial-gradient(640px 200px at 12% 0%, rgba(224, 79, 47, 0.28), transparent 72%),
    radial-gradient(560px 220px at 100% 100%, rgba(224, 79, 47, 0.18), transparent 70%),
    linear-gradient(145deg, #f3ffdd 0%, #f0ffd6 100%);
  border-top: 1px solid #cfe88a;
  border-bottom: 1px solid #cfe88a;
}

.why-highlight h2 {
  color: #2F5D44;
}

.why-highlight .section-intro {
  color: #3d6031;
}

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

.why-highlight .why-card {
  border-color: #cfe88a;
  background: linear-gradient(180deg, #fffdfb 0%, #f3ffdd 100%);
}

.why-highlight .why-card h3 {
  color: #2F5D44;
}

.why-highlight .why-card p {
  color: #48663b;
}

.edge-section {
  background:
    radial-gradient(600px 220px at 8% 0%, rgba(224, 79, 47, 0.2), transparent 72%),
    radial-gradient(520px 200px at 100% 100%, rgba(13, 110, 253, 0.12), transparent 72%),
    linear-gradient(145deg, #fff8f3 0%, #fff1e8 100%);
  border-top: 1px solid #d9efa0;
  border-bottom: 1px solid #d9efa0;
}

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

.edge-card {
  border-color: #efbea8;
  background: linear-gradient(180deg, #ffffff 0%, #fff6ef 100%);
}

.edge-card h3 {
  color: #2F5D44;
}

.story-section {
  background:
    radial-gradient(580px 220px at 6% 0%, rgba(13, 110, 253, 0.14), transparent 72%),
    radial-gradient(520px 200px at 95% 100%, rgba(224, 79, 47, 0.15), transparent 72%),
    linear-gradient(180deg, #f7fbff 0%, #f1f7ff 100%);
  border-top: 1px solid #d8e6fa;
  border-bottom: 1px solid #d8e6fa;
}

.story-copy {
  max-width: 78ch;
}

.story-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.story-photo-wrap {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #c8ddf8;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: 0 16px 30px rgba(16, 52, 93, 0.16);
}

.story-photo {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.story-copy p {
  margin: 0 0 0.9rem;
  color: #304f70;
  line-height: 1.7;
}

.text-highlight {
  color: #2F5D44;
  font-weight: 700;
}

.story-callout {
  margin-top: 1rem;
  border-left: 4px solid #2F5D44;
  background: linear-gradient(145deg, #f4ffe3 0%, #fbffe8 100%);
  border-radius: 12px;
  padding: 1rem;
  color: #48663b;
  line-height: 1.6;
  font-weight: 600;
}

.careers-section {
  background:
    radial-gradient(620px 220px at 10% 0%, rgba(224, 79, 47, 0.14), transparent 72%),
    radial-gradient(540px 210px at 100% 100%, rgba(13, 110, 253, 0.12), transparent 72%),
    linear-gradient(180deg, #fffaf6 0%, #fff3ea 100%);
  border-top: 1px solid #d9efa0;
  border-bottom: 1px solid #d9efa0;
}

.careers-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.career-card {
  border-color: #d9efa0;
  background: linear-gradient(180deg, #fffefe 0%, #fff6ef 100%);
}

.career-meta {
  margin: 0 0 0.55rem;
  color: #8a3d28;
  font-weight: 700;
  font-size: 0.9rem;
}

.career-callout {
  margin-top: 1rem;
  border-left: 4px solid #2F5D44;
  background: linear-gradient(145deg, #f4ffe3 0%, #fbffe8 100%);
  border-radius: 12px;
  padding: 1rem;
  color: #48663b;
  line-height: 1.6;
}

.career-callout a {
  color: #2F5D44;
  font-weight: 700;
}

.partners-section {
  background:
    radial-gradient(640px 230px at 8% 0%, rgba(13, 110, 253, 0.1), transparent 72%),
    radial-gradient(560px 220px at 100% 100%, rgba(224, 79, 47, 0.12), transparent 72%),
    linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
  border-top: 1px solid #d8e6fa;
  border-bottom: 1px solid #d8e6fa;
}

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

.partner-card {
  border-color: #c8ddf8;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.partner-card h3 {
  color: #2F5D44;
}

.partner-logo {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  border: 1px solid #d0e0f4;
  background: #ffffff;
  padding: 6px;
  display: block;
  margin-bottom: 0.55rem;
}

.readiness-section {
  background:
    radial-gradient(660px 260px at 8% 0%, rgba(13, 110, 253, 0.18), transparent 72%),
    radial-gradient(580px 240px at 100% 100%, rgba(224, 79, 47, 0.2), transparent 72%),
    linear-gradient(145deg, #f3f9ff 0%, #eaf3ff 100%);
  border-top: 1px solid #cde0fa;
  border-bottom: 1px solid #cde0fa;
}

.readiness-spotlight {
  margin: 0 0 1rem;
  border: 1px solid #b8d5fb;
  border-left: 4px solid #9ef01a;
  border-radius: 12px;
  padding: 0.95rem 1rem;
  background: linear-gradient(145deg, #ffffff 0%, #f2f8ff 100%);
}

.readiness-spotlight h3 {
  margin: 0 0 0.35rem;
  color: #2F5D44;
}

.readiness-spotlight p {
  margin: 0;
  color: #375978;
  line-height: 1.6;
}

.readiness-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
  margin-bottom: 1rem;
  color: #325272;
  font-size: 0.95rem;
}

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

.readiness-card {
  border-color: #bdd8fb;
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}

.readiness-card h3 {
  color: #2F5D44;
}

.patch-highlight {
  background:
    radial-gradient(620px 210px at 8% 0%, rgba(47, 93, 68, 0.14), transparent 72%),
    radial-gradient(540px 220px at 100% 100%, rgba(158, 240, 26, 0.2), transparent 72%),
    linear-gradient(180deg, #f7ffee 0%, #f1ffd9 100%);
  border-top: 1px solid #cfe88a;
  border-bottom: 1px solid #cfe88a;
}

.patch-highlight h2 {
  color: #2F5D44;
}

.patch-highlight .section-intro {
  color: #385b2d;
}

.patch-highlight .card {
  border-color: #cfe88a;
  background: linear-gradient(180deg, #ffffff 0%, #f6ffe7 100%);
}

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

.security-service-card {
  border-color: #c8dcf8;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.security-service-card h3 {
  color: #2F5D44;
}

.killchain-section {
  background:
    radial-gradient(680px 230px at 8% 0%, rgba(13, 110, 253, 0.12), transparent 72%),
    radial-gradient(620px 230px at 100% 100%, rgba(224, 79, 47, 0.15), transparent 72%),
    linear-gradient(180deg, #f8fbff 0%, #f0f6ff 100%);
  border-top: 1px solid #d4e4fa;
  border-bottom: 1px solid #d4e4fa;
}

.killchain-timeline-wrap {
  overflow-x: auto;
  overflow-y: visible;
  border: 1px solid #bdd7fa;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  padding: 0.6rem;
}

.killchain-timeline {
  min-width: 940px;
  display: grid;
  grid-template-columns: 220px repeat(8, minmax(80px, 1fr));
  gap: 0.45rem;
  align-items: center;
}

.timeline-head {
  border: 1px solid #c8dcfa;
  border-radius: 10px;
  background: #f3f9ff;
  color: #2F5D44;
  font-size: 0.79rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  padding: 0.45rem 0.3rem;
}

.timeline-head.phase-label {
  text-align: left;
  padding-left: 0.65rem;
}

.timeline-phase {
  position: relative;
  cursor: help;
}

.timeline-phase::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  width: min(260px, 90vw);
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  border: 1px solid #c6dcfa;
  background: #ffffff;
  color: #234262;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 12px 22px rgba(15, 52, 94, 0.18);
  opacity: 0;
  pointer-events: none;
  z-index: 12;
  transition: opacity 0.14s ease;
}

.timeline-phase:hover::after,
.timeline-phase:focus-visible::after {
  opacity: 1;
}

.timeline-offering {
  font-size: 0.9rem;
  font-weight: 700;
  color: #173b62;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #d2e3f8;
}

.timeline-dot {
  width: 100%;
  min-height: 30px;
  border-radius: 10px;
  border: 1px solid #d4e4f8;
  background: #f8fbff;
  position: relative;
}

.timeline-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.timeline-dot.off::after {
  background: #c8d9ee;
}

.timeline-dot.on {
  border-color: #cfe88a;
  background: #fff3eb;
}

.timeline-dot.on::after {
  background: #2F5D44;
}

.offerings-grid .card {
  height: 100%;
}

.offering-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offering-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
}

.offering-card p {
  margin: 0;
}

.offering-card p:first-of-type {
  flex: 1 1 auto;
}

.offering-cta {
  min-height: 2rem;
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 0.3rem;
}

.offer-icon {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(145deg, #fff1ec 0%, #ffe2d8 100%);
  border: 1px solid #cfe88a;
  font-size: 1rem;
}

.offering-link {
  display: inline-block;
  color: #2F5D44;
  font-weight: 700;
}

.offering-link:hover {
  text-decoration: underline;
}

.ai-focus {
  background: linear-gradient(135deg, #2F5D44 0%, #9ef01a 65%, #2F5D44 160%);
  color: #f3f8ff;
  border-radius: 16px;
  border: 1px solid #4b77aa;
  padding: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 1.8rem;
}

.ai-focus h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

.ai-focus p {
  margin: 0;
  color: #d7e8ff;
  line-height: 1.6;
}

.process-shell {
  background: linear-gradient(135deg, #0a2a50 0%, #0c3a70 55%, #0f4f96 100%);
  border-top: 1px solid #215ea0;
  border-bottom: 1px solid #215ea0;
}

.process-shell h2,
.process-shell .process-step h3 {
  color: #f4f9ff;
}

.process-shell .section-intro,
.process-shell .process-step p {
  color: #d7e8ff;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  border-radius: 10px;
  padding: 0.45rem 0.25rem 0.4rem 0.95rem;
  border-left: 3px solid rgba(191, 222, 255, 0.95);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.process-step:hover {
  background: rgba(224, 79, 47, 0.16);
  border-left-color: #2F5D44;
  box-shadow: 0 10px 20px rgba(12, 45, 85, 0.2);
}

.process-num {
  display: block;
  margin-bottom: 0.4rem;
  color: #b8d9ff;
  font-weight: 700;
  font-size: 1.25rem;
}

.founders {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.founder {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid #d8e4f2;
  padding: 1.2rem;
}

.founder-photo {
  width: 112px;
  height: 112px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 3px solid #e8f1ff;
  box-shadow: 0 6px 18px rgba(16, 35, 61, 0.12);
  margin-bottom: 0.85rem;
}

.cason-photo {
  object-position: center 26%;
}

.founder .title {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 0.7rem;
}

.founder p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.founder-links a {
  display: inline-flex;
  align-items: center;
  border: 1px solid #bfd2ee;
  background: #f7fbff;
  color: var(--brand-deep);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.founder-callout {
  margin-top: 1.15rem;
  margin-bottom: 1.6rem;
  background: linear-gradient(145deg, #e8f2ff 0%, #f4f9ff 100%);
  border: 1px solid #c7daf7;
  border-left: 4px solid #9ef01a;
  border-radius: 12px;
  padding: 1rem;
}

.founder-callout h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: #2F5D44;
}

.founder-callout p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact {
  background: linear-gradient(145deg, #1f3d2d 0%, #9ef01a 60%, #3d7a58 100%);
  color: #f2f6ff;
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid rgba(148, 202, 255, 0.35);
}

.contact p {
  margin: 0.55rem 0;
  color: #d5e4ff;
}

.contact strong,
.contact h2 {
  color: #ffffff;
}

.contact-form {
  background: #ffffff;
  border: 1px solid #d8e4f2;
  border-radius: 16px;
  padding: 1.2rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
  color: #18395f;
  margin-bottom: 0.9rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #c7d8ee;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  font-weight: 500;
  color: #223d5c;
  background: #fbfdff;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #9ef01a;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
  background: #ffffff;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.form-note {
  color: #4b5e78;
  font-size: 0.92rem;
}

.form-note a {
  color: #2F5D44;
  font-weight: 700;
}

footer {
  padding: 2rem 0 2.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-it {
  color: #2F5D44;
  font-weight: 700;
}

footer .footer-it {
  color: #2F5D44 !important;
}

.footer-areas {
  margin-top: 0.45rem;
  font-size: 0.88rem;
  color: #5c7089;
}

@media (max-width: 1024px) {
  .offerings-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 880px) {
  .triptych {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .edge-grid {
    grid-template-columns: 1fr;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-photo-wrap {
    max-width: 340px;
    margin: 0 auto;
  }

  .careers-grid {
    grid-template-columns: 1fr;
  }

  .readiness-grid {
    grid-template-columns: 1fr;
  }

  .security-offerings-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .killchain-timeline {
    min-width: 860px;
  }
}

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

  .metrics {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 5.5rem 1rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
    border-left: 1px solid #c9daef;
    border-radius: 0;
    box-shadow: -18px 0 40px rgba(16, 52, 93, 0.2);
    transform: translateX(102%);
    transition: transform 0.22s ease;
    z-index: 40;
  }

  .menu a {
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    font-size: 0.95rem;
    transform: none;
  }

  .menu a::after {
    display: none;
  }

  .menu-scrim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 27, 49, 0.36);
    border: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 30;
  }

  .site-nav.nav-open .menu {
    transform: translateX(0);
  }

  .site-nav.nav-open .menu-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-nav-inner {
    min-height: 62px;
  }
}

@media (max-width: 560px) {
  .offerings-grid,
  .process-track {
    grid-template-columns: 1fr;
  }
}
