:root {
  color-scheme: light;
  --ink: #111820;
  --muted: #5e6d79;
  --line: #d8e0e6;
  --panel: #f4f7f8;
  --white: #ffffff;
  --accent: #008aa3;
  --accent-dark: #056173;
  --signal: #c7f04a;
  --steel: #121d25;
  --steel-2: #1d2b35;
  --warning: #7a5a12;
  --warning-bg: #fff7df;
  --radius: 8px;
  --shadow: 0 28px 90px rgba(12, 28, 38, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(12, 18, 23, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 760;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(150px, 14vw, 214px);
  height: 42px;
  object-fit: contain;
  filter: invert(88%) sepia(94%) saturate(560%) hue-rotate(22deg) brightness(112%) contrast(106%);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 9px 14px;
  color: #071017 !important;
  background: var(--signal);
  border-radius: 7px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100vh - 62px);
  padding: clamp(96px, 12vw, 150px) clamp(20px, 5vw, 64px) clamp(34px, 5vw, 58px);
  overflow: hidden;
  isolation: isolate;
  background: var(--steel);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 14, 20, 0.94) 0%, rgba(6, 14, 20, 0.8) 42%, rgba(6, 14, 20, 0.24) 76%),
    linear-gradient(180deg, rgba(6, 14, 20, 0.14) 0%, rgba(6, 14, 20, 0.76) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    repeating-linear-gradient(120deg, transparent 0 34px, rgba(199, 240, 74, 0.09) 35px 36px);
  background-size: 80px 80px, 80px 80px, auto;
  mask-image: linear-gradient(90deg, #000 0%, transparent 76%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-left: clamp(0px, 1.5vw, 18px);
  border-left: 4px solid var(--signal);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 830px;
  margin-bottom: 22px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6.4vw, 86px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
}

.hero-text {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.55vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 780;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #071017;
  background: var(--signal);
}

.button.primary:hover {
  background: #d7ff63;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 860px;
  margin: 0;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-stats dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--white);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 850;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(199, 240, 74, 0.12), transparent 28%),
    linear-gradient(90deg, #101923 0%, #13232c 48%, #203642 100%);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 7vw, 92px);
  top: 50%;
  width: min(420px, 38vw);
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(199, 240, 74, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
  backdrop-filter: blur(16px);
}

.hero-panel span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.06;
}

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

.media-spec {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(22px, 4vw, 48px);
  display: grid;
  gap: 4px;
  min-width: 260px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(9, 18, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.media-spec span {
  color: var(--signal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.media-spec strong {
  font-size: 17px;
  line-height: 1.2;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  background: #2a3a45;
  border-top: 1px solid #2a3a45;
  border-bottom: 1px solid #2a3a45;
}

.proof-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: #141f27;
  font-size: 14px;
  font-weight: 720;
  text-align: center;
}

.proof-strip span:first-child,
.proof-strip span:nth-child(2) {
  color: #071017;
  background: var(--signal);
}

.custom-brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 64px) clamp(64px, 7vw, 96px);
  background:
    linear-gradient(180deg, #101923 0%, #101923 42%, #eef3f5 42%, #eef3f5 100%);
}

.custom-brief div {
  position: relative;
  min-height: 260px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(199, 240, 74, 0.18), transparent 44%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px),
    #101923;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 90px rgba(12, 28, 38, 0.22);
}

.custom-brief div::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 4px;
  background: var(--signal);
}

.custom-brief span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  place-items: center;
  color: #071017;
  background: var(--signal);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.custom-brief strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 33px);
  line-height: 1.05;
}

.custom-brief p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 64px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
}

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

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

.feature-grid article,
.product-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(18, 35, 46, 0.06);
}

.feature-grid article::before,
.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--accent);
}

.feature-grid p,
.product-card p {
  color: var(--muted);
}

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

.product-card {
  min-height: 218px;
}

.product-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--accent-dark);
  font-weight: 850;
}

.work-section {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 138, 163, 0.22), transparent 32%),
    linear-gradient(180deg, #101a21 0%, #17242d 100%);
}

.work-section .eyebrow {
  color: var(--signal);
}

.work-section h2,
.work-section h3 {
  color: var(--white);
}

.work-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.7);
}

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

.case-card {
  position: relative;
  display: grid;
  min-height: 390px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  border: 1px solid rgba(199, 240, 74, 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.case-copy {
  position: relative;
  z-index: 1;
  padding: 18px 18px 20px;
}

.case-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.case-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.text-only-grid .case-card {
  min-height: 260px;
  align-content: end;
  background:
    linear-gradient(150deg, rgba(199, 240, 74, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
}

.text-only-grid .case-card::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 4px;
  z-index: 1;
  background: var(--signal);
  border-radius: 999px;
  opacity: 0.92;
}

.text-only-grid .case-copy {
  padding: 28px;
}

.text-only-grid .case-copy h3 {
  max-width: 320px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
}

.text-only-grid .case-copy p {
  max-width: 360px;
}

.bands {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(199, 240, 74, 0.08), transparent 34%),
    var(--steel);
}

.bands .eyebrow {
  color: var(--signal);
}

.bands h2 {
  color: var(--white);
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-list span {
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 730;
}

.process-section {
  background: #fbfcfc;
  border-bottom: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  position: relative;
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: step;
  box-shadow: 0 18px 50px rgba(18, 35, 46, 0.06);
}

.process-list li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 36px;
  color: var(--accent);
  font-weight: 850;
}

.process-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.process-list span {
  color: var(--muted);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 138, 163, 0.16), transparent 50%),
    #101a21;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.72);
}

address {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

address a {
  color: var(--white);
  font-weight: 750;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd5dc;
  border-radius: 7px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.full,
.form-note {
  grid-column: 1 / -1;
}

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

.form-note a {
  color: var(--accent-dark);
  font-weight: 750;
}

.compliance {
  padding: 24px clamp(20px, 5vw, 64px);
  color: var(--warning);
  background: var(--warning-bg);
  border-top: 1px solid #efd98f;
  border-bottom: 1px solid #efd98f;
  font-size: 14px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 64px);
  color: #d9e2e6;
  background: #0a1117;
  font-size: 14px;
}

.site-footer a {
  color: #ffffff;
}

.footer-logo {
  width: 154px;
  height: 42px;
  object-fit: contain;
  filter: invert(1);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .split,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .media-spec {
    display: none;
  }

  .hero-panel {
    display: none;
  }

  .proof-strip,
  .custom-brief,
  .product-grid,
  .case-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .nav {
    gap: 14px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 30px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    margin: 24px 0;
  }

  .hero-stats div {
    padding: 14px;
  }

  .proof-strip,
  .custom-brief,
  .feature-grid,
  .product-grid,
  .case-grid,
  .process-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-height: auto;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-stats dt {
    font-size: 10px;
  }

  .hero-stats dd {
    font-size: 17px;
    line-height: 1.1;
  }
}
