:root {
  --ink: #101316;
  --paper: #f6f8f2;
  --white: #ffffff;
  --muted: #687178;
  --soft: #dfe5df;
  --line: rgba(16, 19, 22, 0.13);
  --charcoal: #12171b;
  --charcoal-2: #1f272b;
  --gold: #f6bc2f;
  --gold-dark: #b77a10;
  --teal: #1e978e;
  --leaf: #6ea545;
  --coral: #d95d45;
  --shadow: 0 24px 70px rgba(16, 19, 22, 0.18);
  --anchor-offset: 126px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#services,
#ai,
#protection,
#security,
#websites,
#industries,
#contact {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
dl,
dd,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 72px;
  line-height: 0.94;
}

h2 {
  margin-bottom: 16px;
  font-size: 46px;
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

p {
  color: var(--muted);
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 19, 22, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 19, 22, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 10px 48px;
  border-bottom: 1px solid rgba(16, 19, 22, 0.14);
  background: rgba(246, 248, 242, 0.95);
  color: var(--ink);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(16, 19, 22, 0.12);
}

body.nav-open .site-header {
  border-color: rgba(16, 19, 22, 0.14);
  background: rgba(246, 248, 242, 0.95);
  color: var(--ink);
  box-shadow: 0 12px 35px rgba(16, 19, 22, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 292px;
  height: 76px;
  border-radius: 8px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(246, 188, 47, 0.36);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.site-nav a,
.header-call {
  min-height: 40px;
  border-radius: 8px;
  padding: 10px 9px;
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(246, 188, 47, 0.18);
  outline: none;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 188, 47, 0.6);
  background: rgba(246, 188, 47, 0.13);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 188, 47, 0.7);
  border-radius: 8px;
  background: rgba(18, 23, 27, 0.1);
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(42deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-42deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  grid-template-rows: minmax(580px, 1fr) auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 136px 48px 34px;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 23, 27, 0.94), rgba(18, 23, 27, 0.72) 48%, rgba(18, 23, 27, 0.36)),
    linear-gradient(150deg, rgba(246, 188, 47, 0.18), rgba(30, 151, 142, 0.2) 46%, rgba(217, 93, 69, 0.12));
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -42px;
  z-index: 1;
  height: 88px;
  background: var(--paper);
  transform: rotate(-1.5deg);
  transform-origin: 50% 50%;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.02);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.hero-logo-lockup {
  width: min(520px, 100%);
  margin-bottom: 22px;
}

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

.hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.52;
}

.hero-actions,
.contact-notes,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  border-color: transparent;
  background: var(--gold);
  color: #17120a;
  box-shadow: 0 18px 36px rgba(246, 188, 47, 0.24);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(16, 19, 22, 0.2);
  outline: none;
}

.ops-panel {
  position: relative;
  z-index: 2;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(18, 23, 27, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-status {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
}

.panel-status strong {
  color: var(--gold);
}

.ops-panel dl {
  display: grid;
  gap: 14px;
  margin-bottom: 0;
}

.ops-panel div {
  min-height: 86px;
}

.ops-panel dt {
  color: var(--white);
  font-weight: 900;
}

.ops-panel dd {
  margin-left: 0;
  color: rgba(255, 255, 255, 0.72);
}

.signal-strip {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.signal-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
  text-align: center;
}

.signal-strip span:last-child {
  border-right: 0;
}

.section {
  position: relative;
  padding: 88px 48px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split,
.media-split,
.contact-layout,
.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.media-split {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.media-split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
}

.section-heading {
  max-width: 820px;
}

.section-heading p,
.intro-copy p {
  font-size: 18px;
}

.intro-band {
  margin-top: -1px;
  background: var(--paper);
}

.services-band,
.industries-band {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.service-card,
.industry-card,
.contact-form,
.security-checks div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 19, 22, 0.08);
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 318px;
  padding: 22px;
}

.service-index {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold);
  font-weight: 900;
}

.service-card p,
.industry-card p {
  margin-bottom: 18px;
}

.service-card a {
  align-self: end;
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.service-card:hover,
.industry-card:hover {
  border-color: rgba(30, 151, 142, 0.45);
  transform: translateY(-4px);
}

.protection-band {
  background: #eff4ef;
}

.ai-band {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(246, 188, 47, 0.14), transparent 35%),
    linear-gradient(90deg, rgba(18, 23, 27, 0.98), rgba(24, 35, 38, 0.98));
  color: var(--white);
}

.ai-band .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.ai-band .section-heading .eyebrow {
  color: var(--gold);
}

.ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 38px;
  align-items: stretch;
}

.ai-panel {
  min-height: 240px;
  display: grid;
  align-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.ai-panel span {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
}

.ai-panel strong {
  font-size: 24px;
  line-height: 1.2;
}

.ai-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.ai-card {
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.ai-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 950;
}

.ai-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.security-band {
  background: var(--charcoal);
  color: var(--white);
}

.security-band .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.media-frame,
.security-image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-frame::after,
.security-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(246, 188, 47, 0.2), transparent 38%),
    linear-gradient(0deg, rgba(16, 19, 22, 0.14), transparent 58%);
}

.media-frame img,
.security-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.feature-list {
  margin-top: 24px;
}

.feature-list span,
.contact-notes span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-weight: 800;
}

.security-layout {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  margin-top: 34px;
}

.security-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.security-checks div {
  min-height: 150px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: none;
}

.security-checks strong {
  display: block;
  margin-bottom: 9px;
}

.security-checks span {
  color: rgba(255, 255, 255, 0.68);
}

.websites-band {
  background: #f4f0e6;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid rgba(16, 19, 22, 0.12);
}

.process-list span {
  color: var(--gold-dark);
  font-weight: 950;
}

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

.industry-card {
  min-height: 230px;
  padding: 24px;
}

.method-band {
  background: var(--charcoal-2);
  color: var(--white);
}

.method-band .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.method-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.method-rail div {
  min-height: 210px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.method-rail div:last-child {
  border-right: 0;
}

.method-rail span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 950;
}

.method-rail p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-band {
  background: var(--paper);
}

.contact-layout {
  align-items: start;
}

.contact-copy a {
  color: var(--teal);
  font-weight: 900;
}

.contact-notes {
  margin-top: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
  color: var(--ink);
  padding: 12px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(30, 151, 142, 0.18);
}

.form-status {
  min-height: 26px;
  margin-bottom: 0;
  color: var(--teal);
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 26px 48px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.site-header,
.site-header.scrolled,
body.nav-open .site-header {
  border-bottom-color: rgba(16, 19, 22, 0.14) !important;
  background: rgba(246, 248, 242, 0.95) !important;
  color: var(--ink) !important;
  box-shadow: 0 12px 35px rgba(16, 19, 22, 0.12) !important;
  transition: none !important;
}

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

@media (max-width: 1180px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 40px;
  }

  .site-header {
    padding-inline: 30px;
  }

  .brand {
    width: 232px;
  }

  .header-call {
    display: none;
  }

  .hero,
  .section,
  .site-footer {
    padding-inline: 30px;
  }

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

  .service-card {
    min-height: 250px;
  }

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

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

  .method-rail div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 52px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 126px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .ops-panel {
    width: min(100%, 520px);
  }

  .signal-strip,
  .split,
  .ai-layout,
  .media-split,
  .media-split.reverse,
  .contact-layout,
  .security-layout {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    margin-top: 12px;
  }
}

@media (max-width: 900px) {
  :root {
    --anchor-offset: 96px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .site-header {
    grid-template-columns: auto auto;
    min-height: 76px;
    padding: 10px 18px;
  }

  .brand {
    width: 190px;
    height: 52px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-call {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    background: rgba(246, 248, 242, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .hero,
  .section,
  .site-footer {
    padding-inline: 18px;
  }

  .hero {
    padding-top: 106px;
    padding-bottom: 24px;
  }

  .hero-logo-lockup {
    width: min(100%, 360px);
    margin-bottom: 18px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .signal-strip,
  .service-grid,
  .ai-grid,
  .security-checks,
  .industry-grid,
  .method-rail {
    grid-template-columns: 1fr;
  }

  .ops-panel {
    display: none;
  }

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

  .signal-strip span,
  .method-rail div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .signal-strip span {
    min-height: 58px;
    padding: 11px;
    font-size: 14px;
  }

  .media-frame,
  .security-image,
  .media-frame img,
  .security-image img {
    min-height: 300px;
  }

  .site-footer {
    flex-direction: column;
  }
}
