/*
Theme Name: Knightswatch
Theme URI: http://localhost:8080
Author: Knightswatch
Description: A custom cybersecurity landing page theme for Knightswatch.
Version: 1.7.3
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: knightswatch
*/
:root {
  --bg: #020806;
  --bg-2: #06140e;
  --panel: #081b12;
  --ink: #f6fbf4;
  --muted: #c6d0c2;
  --soft: #8f9b8d;
  --green: #7fd538;
  --green-2: #59ad29;
  --green-3: #a4f456;
  --line: rgba(127, 213, 56, 0.22);
  --line-strong: rgba(127, 213, 56, 0.46);
  --shadow: rgba(0, 0, 0, 0.44);
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 9%, rgba(67, 161, 44, 0.28), transparent 28rem),
    radial-gradient(circle at 9% 72%, rgba(29, 98, 69, 0.22), transparent 30rem),
    linear-gradient(180deg, #010705 0%, #06140f 52%, #020806 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(127, 213, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 213, 56, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
}

img {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: var(--green-3);
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 14px;
  border: 1px solid var(--green);
  background: #051008;
  color: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(127, 213, 56, 0.14);
  background: rgba(2, 8, 6, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 82px;
  height: 36px;
  place-items: center;
  overflow: hidden;
  color: #061407;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--green) 0%, #4a9a22 100%);
  clip-path: polygon(0 0, 86% 0, 100% 50%, 86% 100%, 0 100%, 13% 50%);
}

.brand-mark::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 24%, rgba(2, 8, 6, 0.38) 25% 32%, transparent 33% 48%, rgba(2, 8, 6, 0.38) 49% 56%, transparent 57%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
  mix-blend-mode: multiply;
}

.brand-logo {
  display: inline-flex;
  min-width: 82px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: auto;
  max-width: 168px;
  max-height: 44px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  text-transform: uppercase;
}

.brand-name {
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-left: auto;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav-list li {
  margin: 0;
}

.primary-nav a {
  position: relative;
  padding-block: 26px;
}

.primary-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--green);
  content: "";
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-button,
.menu-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 800;
}

.globe-icon,
.badge-global {
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 42%, currentColor 42% 55%, transparent 55%),
    linear-gradient(0deg, transparent 42%, currentColor 42% 55%, transparent 55%);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #061007;
  box-shadow: 0 10px 24px rgba(75, 174, 35, 0.18);
}

.button-primary:hover {
  color: #061007;
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(3, 11, 7, 0.24);
}

.button-secondary:hover {
  border-color: var(--green);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(2, 8, 6, 0.98) 0%, rgba(2, 8, 6, 0.92) 37%, rgba(2, 8, 6, 0.42) 100%),
    radial-gradient(circle at 78% 38%, rgba(102, 205, 55, 0.22), transparent 26rem);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(2, 8, 6, 0.88));
  content: "";
}

.hero-art {
  position: absolute;
  inset: 0 0 0 auto;
  width: 68%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.92;
  filter: saturate(1.12) contrast(1.04);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 500px;
  align-items: center;
}

.hero-copy {
  width: min(520px, 54%);
  padding: 56px 0 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-3);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 520px;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--green);
}

.hero p {
  margin: 22px 0 0;
  max-width: 440px;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge-icon {
  color: var(--green);
}

.badge-team {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 44%, currentColor 44% 56%, transparent 56%),
    linear-gradient(0deg, transparent 44%, currentColor 44% 56%, transparent 56%);
}

.service-strip,
.trust-section,
.industries-section,
.resources-section,
.cta-section,
.site-footer {
  border-bottom: 1px solid var(--line);
}

.service-strip {
  background: linear-gradient(180deg, rgba(7, 27, 18, 0.78), rgba(4, 13, 9, 0.88));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-item {
  min-height: 194px;
  padding: 28px 20px 26px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.service-item:first-child {
  border-left: 0;
}

.line-icon,
.stat-icon,
.proof-icon {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  color: var(--green);
}

.line-icon.custom-graphic-wrap,
.stat-icon.custom-graphic-wrap,
.proof-icon.custom-graphic-wrap,
.industry-icon.custom-graphic-wrap,
.badge-icon.custom-graphic-wrap {
  display: inline-grid;
  place-items: center;
  overflow: hidden;
}

.custom-graphic-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge-icon.custom-graphic-wrap {
  width: 19px;
  height: 19px;
  border: 0;
  border-radius: 0;
  background: none;
}

.service-item h3 {
  margin: 14px auto 10px;
  max-width: 170px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-item p {
  margin: 0 auto;
  max-width: 165px;
  color: var(--muted);
  font-size: 13px;
}

.icon-target {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-target::before,
.icon-target::after {
  position: absolute;
  content: "";
}

.icon-target::before {
  inset: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-target::after {
  left: 50%;
  top: -8px;
  width: 2px;
  height: 62px;
  transform: translateX(-50%);
  background: currentColor;
}

.icon-shield,
.icon-safe,
.icon-tailored {
  clip-path: polygon(50% 4%, 85% 17%, 85% 52%, 50% 94%, 15% 52%, 15% 17%);
  border: 3px solid currentColor;
}

.icon-shield::after,
.icon-safe::after,
.icon-tailored::after {
  position: absolute;
  left: 16px;
  top: 19px;
  width: 15px;
  height: 8px;
  transform: rotate(-45deg);
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  content: "";
}

.icon-siren::before {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 23px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  content: "";
}

.icon-siren::after {
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  height: 2px;
  background: currentColor;
  box-shadow: 20px -37px 0 -1px currentColor, -14px -27px 0 -1px currentColor, 36px -27px 0 -1px currentColor;
  content: "";
}

.icon-monitor::before {
  position: absolute;
  inset: 6px 5px 13px;
  border: 2px solid currentColor;
  border-radius: 2px;
  content: "";
}

.icon-monitor::after {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 2px;
  background: currentColor;
  box-shadow: 10px -22px 0 -1px currentColor, 16px -29px 0 -1px currentColor, 22px -20px 0 -1px currentColor;
  content: "";
}

.icon-search::before {
  position: absolute;
  left: 6px;
  top: 5px;
  width: 25px;
  height: 25px;
  border: 3px solid currentColor;
  border-radius: 50%;
  content: "";
}

.icon-search::after {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 18px;
  height: 3px;
  transform: rotate(45deg);
  transform-origin: left center;
  background: currentColor;
  content: "";
}

.icon-users::before,
.icon-users::after {
  position: absolute;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.icon-users::before {
  left: 8px;
  top: 7px;
  width: 15px;
  height: 15px;
  box-shadow: 17px 0 0 0 currentColor;
}

.icon-users::after {
  left: 5px;
  right: 5px;
  bottom: 8px;
  height: 16px;
  border-radius: 16px 16px 4px 4px;
}

.trust-section {
  padding: 30px 0 28px;
  background: linear-gradient(180deg, rgba(3, 14, 9, 0.94), rgba(8, 30, 20, 0.82));
}

.trust-section h2,
.industries-section h2,
.section-heading h2,
.cta-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
}

.stat {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 14px;
  min-height: 82px;
  border-left: 1px solid var(--line);
}

.stat:first-child {
  border-left: 0;
}

.stat-icon {
  grid-row: span 2;
  width: 58px;
  height: 58px;
}

.stat strong {
  display: block;
  color: var(--green);
  font-size: 36px;
  line-height: 1;
}

.stat span:last-child {
  color: var(--ink);
  font-size: 14px;
}

.icon-globe {
  border: 3px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 46%, currentColor 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, currentColor 46% 54%, transparent 54%);
}

.icon-globe::before,
.icon-globe::after {
  position: absolute;
  inset: 8px 0;
  border: 2px solid currentColor;
  border-left: 0;
  border-right: 0;
  border-radius: 50%;
  content: "";
}

.icon-people::before,
.icon-people::after,
.icon-expert::before,
.icon-expert::after {
  position: absolute;
  border: 3px solid currentColor;
  content: "";
}

.icon-people::before,
.icon-expert::before {
  left: 17px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.icon-people::after,
.icon-expert::after {
  left: 7px;
  right: 7px;
  bottom: 7px;
  height: 22px;
  border-radius: 20px 20px 5px 5px;
}

.icon-award {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon-award::before {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.icon-award::after {
  position: absolute;
  left: 10px;
  bottom: -10px;
  width: 12px;
  height: 20px;
  transform: rotate(22deg);
  background: currentColor;
  box-shadow: 20px -8px 0 currentColor;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 50% 76%, 20% 100%);
  content: "";
}

.industries-section {
  padding: 25px 0 24px;
  background: rgba(4, 20, 13, 0.78);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  margin-top: 20px;
}

.industry-grid > span {
  display: grid;
  min-height: 78px;
  align-content: center;
  justify-items: center;
  gap: 8px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  text-align: center;
}

.industry-grid > span:first-child {
  border-left: 0;
}

.industry-icon {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid currentColor;
  color: var(--green);
  background: linear-gradient(135deg, rgba(127, 213, 56, 0.12), rgba(127, 213, 56, 0.02));
  box-shadow: inset 0 0 0 1px rgba(127, 213, 56, 0.14);
}

.industry-icon.custom-graphic-wrap {
  padding: 5px;
}

.industry-icon.custom-graphic-wrap::before,
.industry-icon.custom-graphic-wrap::after {
  display: none;
}

.industry-icon::before,
.industry-icon::after {
  position: absolute;
  content: "";
}

.industry-financial {
  background:
    linear-gradient(currentColor, currentColor) center 32px / 24px 3px no-repeat,
    linear-gradient(135deg, rgba(127, 213, 56, 0.12), rgba(127, 213, 56, 0.02));
}

.industry-government {
  background:
    linear-gradient(currentColor, currentColor) center 34px / 28px 3px no-repeat,
    linear-gradient(135deg, rgba(127, 213, 56, 0.12), rgba(127, 213, 56, 0.02));
}

.industry-financial::before {
  left: 8px;
  top: 7px;
  width: 24px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.industry-financial::after {
  left: 9px;
  top: 18px;
  width: 3px;
  height: 12px;
  background: currentColor;
  box-shadow: 9px 0 0 currentColor, 18px 0 0 currentColor;
}

.industry-healthcare::before {
  left: 17px;
  top: 9px;
  width: 6px;
  height: 22px;
  background: currentColor;
}

.industry-healthcare::after {
  left: 9px;
  top: 17px;
  width: 22px;
  height: 6px;
  background: currentColor;
}

.industry-government::before {
  left: 8px;
  right: 8px;
  top: 10px;
  height: 6px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.industry-government::after {
  left: 7px;
  top: 21px;
  width: 3px;
  height: 12px;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor, 16px 0 0 currentColor, 24px 0 0 currentColor;
}

.industry-energy::before {
  left: 12px;
  top: 6px;
  width: 17px;
  height: 28px;
  background: currentColor;
  clip-path: polygon(55% 0, 100% 0, 70% 42%, 100% 42%, 34% 100%, 47% 58%, 0 58%);
}

.industry-manufacturing::before {
  left: 11px;
  top: 11px;
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 -7px 0 -5px currentColor, 0 7px 0 -5px currentColor, 7px 0 0 -5px currentColor, -7px 0 0 -5px currentColor;
}

.industry-manufacturing::after {
  left: 17px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.industry-technology::before {
  left: 9px;
  top: 10px;
  width: 20px;
  height: 18px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background:
    linear-gradient(currentColor, currentColor) left 7px / 18px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 10px top / 2px 18px no-repeat;
}

.industry-technology::after {
  left: 25px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -16px 14px 0 currentColor, 0 21px 0 currentColor;
}

.industry-retail::before {
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.industry-retail::after {
  left: 14px;
  top: 8px;
  width: 12px;
  height: 10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.industry-education::before {
  left: 8px;
  top: 11px;
  width: 12px;
  height: 18px;
  transform: skewY(-5deg);
  border: 2px solid currentColor;
  border-right: 0;
  border-radius: 2px 0 0 2px;
}

.industry-education::after {
  right: 8px;
  top: 11px;
  width: 12px;
  height: 18px;
  transform: skewY(5deg);
  border: 2px solid currentColor;
  border-left: 0;
  border-radius: 0 2px 2px 0;
}

.resources-section {
  padding: 22px 0 28px;
  background:
    radial-gradient(circle at 50% 4%, rgba(74, 159, 44, 0.12), transparent 18rem),
    rgba(2, 10, 7, 0.88);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2 {
  flex: 1;
}

.section-heading a {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.insight-card {
  overflow: hidden;
  border: 1px solid rgba(127, 213, 56, 0.34);
  background: linear-gradient(180deg, rgba(8, 28, 19, 0.86), rgba(3, 13, 8, 0.96));
  box-shadow: 0 16px 36px var(--shadow);
}

.insight-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card-body {
  padding: 0 15px 18px;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: -22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #061007;
}

.insight-card h3 {
  min-height: 62px;
  margin: 14px 0 14px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.insight-card a {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-section {
  padding: 24px 0;
  background:
    linear-gradient(90deg, rgba(35, 117, 41, 0.5), transparent 34%),
    linear-gradient(135deg, rgba(14, 51, 30, 0.98), rgba(5, 17, 11, 0.96));
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  align-items: center;
  gap: 42px;
}

.cta-copy {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.cta-copy h2 {
  max-width: 370px;
  text-align: left;
}

.cta-copy p {
  margin: 10px 0 18px;
  color: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.proof-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: start;
}

.proof-icon {
  grid-row: span 2;
}

.proof-grid strong {
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.proof-grid p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.icon-method {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon-method::after {
  position: absolute;
  inset: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.site-footer {
  padding: 28px 0 32px;
  background: rgba(2, 8, 6, 0.96);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr 1.4fr;
  gap: 44px;
}

.footer-grid > div {
  border-left: 1px solid var(--line);
  padding-left: 44px;
}

.footer-grid > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.footer-brand .brand-mark {
  width: 74px;
  height: 32px;
  font-size: 23px;
}

.footer-brand .brand-logo {
  min-width: 74px;
  height: 40px;
}

.footer-brand .brand-logo img {
  max-width: 160px;
  max-height: 40px;
}

.footer-brand .brand-name {
  font-size: 22px;
}

.social-links {
  display: flex;
  gap: 26px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 21px;
  font-weight: 800;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer p,
.site-footer li {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

:focus-visible {
  outline: 2px solid var(--green-3);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 18px;
  }

  .primary-nav,
  .primary-nav-list {
    gap: 18px;
  }

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

  .service-item:nth-child(4) {
    border-left: 0;
  }

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

  .industry-grid > span:nth-child(4n + 1) {
    border-left: 0;
  }

  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-copy,
  .footer-grid > div {
    border-left: 0;
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    background: rgba(2, 8, 6, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .primary-nav-list a {
    display: block;
  }

  .primary-nav a {
    padding: 14px 16px;
  }

  .primary-nav a::after {
    display: none;
  }

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

  .header-cta,
  .language-button {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero-art {
    width: 100%;
    opacity: 0.46;
  }

  .hero-inner {
    min-height: 560px;
  }

  .hero-copy {
    width: 100%;
    max-width: 560px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .stats-grid,
  .insights-grid,
  .proof-grid,
  .custom-embeds-grid {
    grid-template-columns: 1fr 1fr;
  }

  .custom-embed-item,
  .custom-embed-item:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .stats-grid .stat:nth-child(odd) {
    border-left: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading h2 {
    text-align: left;
  }

  .insights-grid .insight-card:last-child,
  .proof-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 62px;
    height: 30px;
    font-size: 21px;
  }

  .brand-logo {
    min-width: 62px;
    height: 34px;
  }

  .brand-logo img {
    max-width: 132px;
    max-height: 34px;
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-subtitle {
    font-size: 8px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-inner {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-badges {
    gap: 16px;
    font-size: 12px;
  }

  .service-grid,
  .stats-grid,
  .industry-grid,
  .insights-grid,
  .proof-grid,
  .custom-embeds-grid {
    grid-template-columns: 1fr;
  }

  .service-item,
  .service-item:nth-child(4),
  .stat,
  .stats-grid .stat:nth-child(odd),
  .industry-grid > span,
  .industry-grid > span:nth-child(4n + 1) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-item:first-child,
  .stat:first-child,
  .industry-grid > span:first-child {
    border-top: 0;
  }

  .stat {
    justify-content: flex-start;
    padding: 18px 0;
  }

  .insights-grid .insight-card:last-child,
  .proof-grid > div:last-child {
    grid-column: auto;
  }

  .site-footer ul {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

body.admin-bar .site-header {
  top: 32px;
}

.custom-embeds-section {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 18%, rgba(127, 213, 56, 0.1), transparent 18rem),
    rgba(2, 10, 7, 0.9);
}

.custom-embeds h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.custom-embeds-intro {
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--muted);
  text-align: center;
}

.custom-embeds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 22px;
  margin-top: 24px;
}

.custom-embed-item {
  min-width: 0;
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.custom-embed-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.custom-embed-item h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
  text-transform: uppercase;
}

.custom-embed-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.custom-embed-frame {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(127, 213, 56, 0.28);
  background: rgba(2, 8, 6, 0.72);
}

.custom-embed-frame iframe,
.custom-embed-frame embed,
.custom-embed-frame object,
.custom-embed-frame video {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 320px;
  border: 0;
}

.custom-embed-frame > * {
  max-width: 100%;
}
.wordpress-content-section {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 14, 9, 0.82);
}

.wordpress-content {
  max-width: 920px;
}

.wordpress-content h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
}

.wordpress-content-body {
  color: var(--muted);
}

.wordpress-content-body > *:first-child {
  margin-top: 0;
}

.wordpress-content-body > *:last-child {
  margin-bottom: 0;
}

.wordpress-content-body h1,
.wordpress-content-body h2,
.wordpress-content-body h3,
.wordpress-content-body h4 {
  color: var(--ink);
  line-height: 1.2;
}

.wordpress-content-body a {
  color: var(--green);
  font-weight: 800;
}

.wordpress-content-body .wp-block-button__link {
  border-radius: 0;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #061007;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.wordpress-content-body img {
  height: auto;
}

.wp-content-page {
  min-height: 60vh;
  padding: 72px 0;
}

.wp-content-page h1 {
  margin-top: 0;
  color: var(--ink);
}

.wp-content-page a {
  color: var(--green);
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 860px) {
  .custom-embeds-grid {
    grid-template-columns: 1fr 1fr;
  }

  .custom-embed-item,
  .custom-embed-item:first-child {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  .custom-embeds-grid {
    grid-template-columns: 1fr;
  }
}

/* About page */
.about-page { overflow: hidden; }
.about-page .eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.about-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.about-hero::after {
  position: absolute;
  inset: 0;
  content: '';
  background:
    linear-gradient(90deg, rgba(2, 8, 6, 0.98) 5%, rgba(2, 8, 6, 0.84) 48%, rgba(2, 8, 6, 0.28)),
    radial-gradient(circle at 70% 50%, rgba(127, 213, 56, 0.18), transparent 28rem);
}
.about-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 96px;
}
.about-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.about-hero-text {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.about-intro {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 28%, rgba(127, 213, 56, 0.08), transparent 24rem),
    #04100a;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 9%;
  align-items: start;
}
.about-page h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.about-intro-copy {
  border-left: 2px solid var(--green);
  padding: 6px 0 6px 36px;
}
.about-intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}
.about-team-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background: #020806;
}
.about-section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}
.about-team-list {
  border-top: 1px solid var(--line);
}
.about-member {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.5fr);
  min-height: 430px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 25, 16, 0.56);
}
.about-member:nth-child(even) {
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.78fr);
}
.about-member:nth-child(even) .about-member-media { order: 2; }
.about-member-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 35%, rgba(127, 213, 56, 0.24), transparent 16rem),
    linear-gradient(145deg, #0b2819, #020806);
}
.about-member:nth-child(even) .about-member-media {
  border-right: 0;
  border-left: 1px solid var(--line);
}
.about-member-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(1.04);
}
.about-member-media > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(164, 244, 86, 0.24);
  font-size: clamp(120px, 18vw, 230px);
  font-weight: 900;
  line-height: 1;
}
.about-member-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 78px);
}
.about-member-number {
  margin-bottom: 28px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.about-member h3 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}
.about-member-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}
.about-cta {
  padding: 86px 0;
  background:
    linear-gradient(100deg, rgba(127, 213, 56, 0.12), transparent 50%),
    #06150d;
}
.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.about-cta h2 { max-width: 820px; }
.about-cta-inner > div > p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}
.about-cta .button { flex: 0 0 auto; }
@media (max-width: 900px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 42px; }
  .about-member,
  .about-member:nth-child(even) {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  }
  .about-member:nth-child(even) .about-member-media { order: 0; }
  .about-member:nth-child(even) .about-member-media {
    border-left: 0;
    border-right: 1px solid var(--line);
  }
  .about-cta-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 680px) {
  .about-hero { min-height: 570px; }
  .about-hero::after { background: linear-gradient(90deg, rgba(2, 8, 6, 0.94), rgba(2, 8, 6, 0.58)); }
  .about-hero h1 { font-size: 42px; }
  .about-intro,
  .about-team-section,
  .about-cta { padding: 68px 0; }
  .about-intro-copy { padding-left: 22px; }
  .about-member,
  .about-member:nth-child(even) { grid-template-columns: 1fr; }
  .about-member-media,
  .about-member:nth-child(even) .about-member-media {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-member-media img { min-height: 330px; }
  .about-member-copy { padding: 36px 28px 44px; }
  .about-member-number { margin-bottom: 18px; }
}

/* Pricing page */
.pricing-page { overflow: hidden; }
.pricing-page .eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pricing-page h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.pricing-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 50%, rgba(127, 213, 56, 0.2), transparent 24rem),
    linear-gradient(135deg, #020806, #071b11);
}
.pricing-hero::before {
  position: absolute;
  inset: 0;
  content: '';
  background-image:
    linear-gradient(rgba(127, 213, 56, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 213, 56, 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, #000);
}
.pricing-hero-glow {
  position: absolute;
  right: 9%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(127, 213, 56, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(127, 213, 56, 0.12), inset 0 0 80px rgba(127, 213, 56, 0.08);
}
.pricing-hero-glow::before,
.pricing-hero-glow::after {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(127, 213, 56, 0.2);
  border-radius: 50%;
  content: '';
}
.pricing-hero-glow::after { inset: 37%; background: rgba(127, 213, 56, 0.12); }
.pricing-hero-inner { position: relative; z-index: 1; padding-top: 90px; padding-bottom: 90px; }
.pricing-hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 6.2vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.pricing-hero-inner > p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.pricing-lifecycle {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
  background: #04100a;
}
.pricing-lifecycle-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 8%;
  align-items: end;
}
.pricing-lifecycle-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.lifecycle-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 48px;
  padding-left: 0;
  list-style: none;
  border: 1px solid var(--line);
}
.lifecycle-steps li {
  position: relative;
  min-width: 0;
  padding: 34px 26px;
  border-right: 1px solid var(--line);
  background: rgba(7, 28, 17, 0.72);
}
.lifecycle-steps li:last-child { border-right: 0; }
.lifecycle-steps li:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -12px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line);
  background: #06140e;
  color: var(--green);
  content: '›';
  transform: translateY(-50%);
}
.lifecycle-steps span { display: block; margin-bottom: 38px; color: var(--green); font-size: 11px; font-weight: 900; }
.lifecycle-steps strong { color: var(--ink); font-size: clamp(15px, 1.5vw, 20px); text-transform: uppercase; }
.pricing-packages {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 15%, rgba(127, 213, 56, 0.08), transparent 28rem),
    #020806;
}
.pricing-section-heading { max-width: 840px; margin-bottom: 48px; }
.pricing-section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(6, 22, 14, 0.88);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}
.pricing-card.is-featured {
  border-color: var(--line-strong);
  background:
    linear-gradient(145deg, rgba(127, 213, 56, 0.1), transparent 40%),
    rgba(6, 25, 15, 0.96);
  box-shadow: 0 26px 64px rgba(40, 114, 36, 0.18);
}
.pricing-featured-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 14px;
  background: var(--green);
  color: #041006;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pricing-card-header { min-height: 260px; padding: 36px 38px; border-bottom: 1px solid var(--line); }
.pricing-package-number { display: inline-block; margin-bottom: 42px; color: var(--green); font-size: 12px; font-weight: 900; }
.pricing-card-header > p:not(.pricing-tagline) {
  display: inline-block;
  margin: 0 0 0 10px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pricing-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  text-transform: uppercase;
}
.pricing-tagline { margin: 18px 0 0; color: var(--muted); line-height: 1.65; }
.pricing-card-body { flex: 1; padding: 34px 38px 40px; }
.pricing-card h4 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pricing-card h4:not(:first-child) { margin-top: 34px; }
.pricing-card ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.pricing-card li { position: relative; padding-left: 22px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.pricing-card li::before { position: absolute; left: 0; color: var(--green); content: '✓'; font-weight: 900; }
.pricing-deliverables { padding: 20px !important; border: 1px solid var(--line); background: rgba(127, 213, 56, 0.04); }
.pricing-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 38px;
  border-top: 1px solid var(--line);
  background: rgba(2, 8, 6, 0.48);
}
.pricing-card-footer strong { display: block; color: var(--green-3); font-size: 30px; line-height: 1; }
.pricing-card-footer span { display: block; margin-top: 7px; color: var(--soft); font-size: 12px; text-transform: uppercase; }
.pricing-card-footer > a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--green);
  font-size: 20px;
}
.pricing-card-footer > a:hover { background: var(--green); color: #041006; }
.pricing-cta { padding: 86px 0; background: linear-gradient(100deg, rgba(127, 213, 56, 0.12), transparent 50%), #06150d; }
.pricing-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.pricing-cta h2 { max-width: 820px; }
.pricing-cta-inner > div > p:not(.eyebrow) { max-width: 680px; margin: 18px 0 0; color: var(--muted); font-size: 17px; }
.pricing-cta .button { flex: 0 0 auto; }
@media (max-width: 900px) {
  .pricing-lifecycle-heading { grid-template-columns: 1fr; gap: 28px; }
  .lifecycle-steps { grid-template-columns: 1fr; }
  .lifecycle-steps li { display: grid; grid-template-columns: 52px 1fr; align-items: center; border-right: 0; border-bottom: 1px solid var(--line); }
  .lifecycle-steps li:last-child { border-bottom: 0; }
  .lifecycle-steps li:not(:last-child)::after { top: auto; right: 50%; bottom: -12px; transform: translateX(50%) rotate(90deg); }
  .lifecycle-steps span { margin: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-cta-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .pricing-hero { min-height: 550px; }
  .pricing-hero-glow { right: -180px; opacity: 0.7; }
  .pricing-hero h1 { font-size: 42px; }
  .pricing-lifecycle,
  .pricing-packages,
  .pricing-cta { padding: 68px 0; }
  .pricing-card-header,
  .pricing-card-body,
  .pricing-card-footer { padding-right: 26px; padding-left: 26px; }
  .pricing-card-header { min-height: 0; }
}

/* Services page */
.services-page { overflow: hidden; }
.services-page .eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.services-page h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.services-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 50%, rgba(127, 213, 56, 0.18), transparent 27rem),
    linear-gradient(135deg, #020806, #071b11);
}
.services-hero::before {
  position: absolute;
  inset: 0;
  content: '';
  background-image:
    linear-gradient(rgba(127, 213, 56, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 213, 56, 0.04) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, #000);
}
.services-hero-inner { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 96px; }
.services-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 6.3vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.services-hero-inner > p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.services-hero-orbit {
  position: absolute;
  right: 6%;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(127, 213, 56, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(127, 213, 56, 0.1);
}
.services-hero-orbit::before,
.services-hero-orbit::after {
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(127, 213, 56, 0.2);
  border-radius: 50%;
  content: '';
}
.services-hero-orbit::after { inset: 35%; background: rgba(127, 213, 56, 0.08); }
.services-hero-orbit span {
  position: absolute;
  top: 50%;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px var(--green);
}
.services-layers {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background: #031009;
}
.services-section-heading { max-width: 850px; margin-bottom: 48px; }
.services-layers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-layer-card {
  min-width: 0;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 24, 14, 0.78);
  transition: background 180ms ease, transform 180ms ease;
}
.service-layer-card:hover { z-index: 1; background: rgba(11, 38, 22, 0.95); transform: translateY(-3px); }
.service-layer-topline { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 46px; }
.service-layer-topline span { color: var(--green); font-size: 12px; font-weight: 900; }
.service-layer-topline small { color: var(--soft); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-align: right; text-transform: uppercase; }
.service-layer-card h3 { margin: 0; color: var(--ink); font-size: 27px; line-height: 1.1; text-transform: uppercase; }
.service-layer-card > p { min-height: 50px; margin: 14px 0 24px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-layer-card ul { display: grid; gap: 9px; margin: 0; padding: 22px 0; border-top: 1px solid var(--line); list-style: none; }
.service-layer-card li { position: relative; padding-left: 18px; color: var(--muted); font-size: 13px; }
.service-layer-card li::before { position: absolute; left: 0; color: var(--green); content: '•'; }
.service-layer-card > a {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.services-pillars {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 18%, rgba(127, 213, 56, 0.08), transparent 28rem),
    #020806;
}
.services-pillar-list { border-top: 1px solid var(--line); }
.service-pillar {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  border-bottom: 1px solid var(--line);
}
.service-pillar-title,
.service-pillar-content { padding: clamp(38px, 5vw, 68px); }
.service-pillar-title { border-right: 1px solid var(--line); background: rgba(7, 27, 16, 0.7); }
.service-pillar-title span { display: block; margin-bottom: 54px; color: var(--green); font-size: 12px; font-weight: 900; }
.service-pillar h3 { margin: 0; color: var(--ink); font-size: clamp(27px, 3.4vw, 44px); line-height: 1.05; text-transform: uppercase; }
.service-pillar-content > p { margin: 0 0 32px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.service-pillar-content h4 { margin: 0 0 18px; color: var(--ink); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.service-pillar-content ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 28px; margin: 0; padding: 0; list-style: none; }
.service-pillar-content li { position: relative; padding-left: 21px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.service-pillar-content li::before { position: absolute; left: 0; color: var(--green); content: '✓'; font-weight: 900; }
.services-final-cta { padding: 86px 0; background: linear-gradient(100deg, rgba(127, 213, 56, 0.12), transparent 50%), #06150d; }
.services-final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.services-final-cta h2 { max-width: 820px; }
.services-final-cta-inner > div > p:not(.eyebrow) { max-width: 720px; margin: 18px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.services-final-cta .button { flex: 0 0 auto; }
@media (max-width: 980px) {
  .services-layers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-pillar { grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr); }
  .services-final-cta-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 700px) {
  .services-hero { min-height: 570px; }
  .services-hero h1 { font-size: 42px; }
  .services-hero-orbit { right: -230px; opacity: 0.7; }
  .services-layers,
  .services-pillars,
  .services-final-cta { padding: 68px 0; }
  .services-layers-grid { grid-template-columns: 1fr; }
  .service-layer-card > p { min-height: 0; }
  .service-pillar { grid-template-columns: 1fr; }
  .service-pillar-title { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-pillar-title span { margin-bottom: 28px; }
  .service-pillar-content ul { grid-template-columns: 1fr; }
}

/* Education page */
.education-page { overflow: hidden; }
.education-page .eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.education-page h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.education-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 48%, rgba(127, 213, 56, 0.18), transparent 27rem),
    linear-gradient(135deg, #020806, #071b11);
}
.education-hero::before {
  position: absolute;
  inset: 0;
  content: '';
  background-image:
    linear-gradient(rgba(127, 213, 56, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 213, 56, 0.04) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, #000);
}
.education-hero-inner { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 96px; }
.education-hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 6.3vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.education-hero-inner > p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.education-hero-pattern {
  position: absolute;
  right: 8%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(127, 213, 56, 0.2);
  transform: rotate(45deg);
}
.education-hero-pattern span { position: absolute; border: 1px solid rgba(127, 213, 56, 0.2); }
.education-hero-pattern span:nth-child(1) { inset: 15%; }
.education-hero-pattern span:nth-child(2) { inset: 31%; background: rgba(127, 213, 56, 0.05); }
.education-hero-pattern span:nth-child(3) { inset: 46%; background: var(--green); box-shadow: 0 0 30px rgba(127, 213, 56, 0.5); }
.education-intro {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background: #04100a;
}
.education-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 9%;
  align-items: start;
}
.education-intro-grid > p {
  margin: 0;
  padding: 6px 0 6px 34px;
  border-left: 2px solid var(--green);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}
.education-assessments {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 45%, rgba(127, 213, 56, 0.09), transparent 25rem),
    #06140d;
}
.education-assessments-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 9%;
  align-items: start;
}
.education-assessments-grid > div > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.education-assessments ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}
.education-assessments li {
  min-height: 124px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 15, 9, 0.62);
}
.education-assessments li span {
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}
.education-assessments li strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  text-transform: uppercase;
}
.education-programs {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 12%, rgba(127, 213, 56, 0.08), transparent 27rem),
    #020806;
}
.education-section-heading { max-width: 860px; margin-bottom: 48px; }
.education-section-heading > p:not(.eyebrow) { max-width: 680px; margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.education-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.education-program {
  min-width: 0;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 24, 14, 0.78);
}
.education-program-header { display: flex; justify-content: space-between; gap: 22px; margin-bottom: 44px; }
.education-program-header > span { color: var(--green); font-size: 12px; font-weight: 900; }
.education-program-header small { color: var(--soft); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-align: right; text-transform: uppercase; }
.education-program h3 { margin: 0; color: var(--ink); font-size: clamp(26px, 3vw, 38px); line-height: 1.05; text-transform: uppercase; }
.education-program > p { min-height: 78px; margin: 18px 0 30px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.education-program h4 { margin: 0 0 16px; color: var(--ink); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.education-program ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 22px; margin: 0; padding: 22px 0; border-top: 1px solid var(--line); list-style: none; }
.education-program li { position: relative; padding-left: 19px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.education-program li::before { position: absolute; left: 0; color: var(--green); content: '✓'; font-weight: 900; }
.education-format { display: grid; gap: 7px; margin-top: 26px; padding: 18px 20px; border: 1px solid var(--line); background: rgba(127, 213, 56, 0.04); }
.education-format strong { color: var(--green); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; }
.education-format span { color: var(--muted); font-size: 13px; }
.education-downloads {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 36%, rgba(127, 213, 56, 0.08), transparent 26rem),
    #06140d;
}
.education-download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.education-download {
  display: flex;
  min-width: 0;
  min-height: 330px;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 16, 9, 0.72);
}
.education-download-meta { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 50px; }
.education-download-meta span { color: var(--green); font-size: 11px; font-weight: 900; }
.education-download-meta small { color: var(--soft); font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.education-download h3 { margin: 0; color: var(--ink); font-size: 24px; line-height: 1.12; text-transform: uppercase; }
.education-download > p { margin: 17px 0 26px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.education-download > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.education-download > a span { font-size: 17px; }
.education-videos {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 22%, rgba(127, 213, 56, 0.08), transparent 27rem),
    #020806;
}
.education-video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.education-video {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(6, 23, 14, 0.78);
}
.education-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(127, 213, 56, 0.16), transparent 11rem),
    #030b07;
}
.education-video-frame iframe,
.education-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.education-video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.education-video-placeholder::before,
.education-video-placeholder::after {
  position: absolute;
  border: 1px solid rgba(127, 213, 56, 0.18);
  border-radius: 50%;
  content: '';
}
.education-video-placeholder::before { width: 120px; height: 120px; }
.education-video-placeholder::after { width: 82px; height: 82px; }
.education-video-placeholder i {
  position: relative;
  z-index: 1;
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--green);
  filter: drop-shadow(0 0 10px rgba(127, 213, 56, 0.5));
}
.education-video-copy { padding: 28px; }
.education-video-copy > span { display: block; margin-bottom: 24px; color: var(--green); font-size: 10px; font-weight: 900; }
.education-video h3 { margin: 0; color: var(--ink); font-size: 21px; line-height: 1.15; text-transform: uppercase; }
.education-video-copy p { margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.education-outcomes {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background: #04100a;
}
.education-outcomes-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 9%;
  align-items: start;
}
.education-outcomes-grid > div > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.education-outcomes ol { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.education-outcomes li { display: grid; grid-template-columns: 54px 1fr; gap: 20px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.education-outcomes li span { color: var(--green); font-size: 11px; font-weight: 900; }
.education-outcomes li strong { color: var(--muted); font-size: 14px; line-height: 1.5; }
.education-cta { padding: 86px 0; background: linear-gradient(100deg, rgba(127, 213, 56, 0.12), transparent 50%), #06150d; }
.education-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.education-cta h2 { max-width: 820px; }
.education-cta-inner > div > p:not(.eyebrow) { max-width: 700px; margin: 18px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.education-cta .button { flex: 0 0 auto; }
@media (max-width: 900px) {
  .education-intro-grid,
  .education-assessments-grid,
  .education-outcomes-grid { grid-template-columns: 1fr; gap: 42px; }
  .education-cta-inner { align-items: flex-start; flex-direction: column; }
  .education-download-grid { grid-template-columns: 1fr; }
  .education-download { min-height: 0; }
  .education-video-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .education-hero { min-height: 570px; }
  .education-hero h1 { font-size: 42px; }
  .education-hero-pattern { right: -230px; opacity: 0.7; }
  .education-intro,
  .education-assessments,
  .education-programs,
  .education-downloads,
  .education-videos,
  .education-outcomes,
  .education-cta { padding: 68px 0; }
  .education-program-grid { grid-template-columns: 1fr; }
  .education-program > p { min-height: 0; }
  .education-program ul { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .education-assessments ul { grid-template-columns: 1fr; }
  .education-assessments li { min-height: 0; }
}
