:root {
  --black: #050505;
  --black-soft: #0a0c0a;
  --white: #ffffff;
  --paper: #f2f4ef;
  --ink: #101310;
  --muted: #aeb5ae;
  --muted-dark: #5b625c;
  --lime: #c6ff00;
  --lime-dark: #6e8f00;
  --light-line: #d4d9d3;
  --dark-line: rgba(255, 255, 255, 0.14);
  --content: 1280px;
  --side: max(5vw, calc((100vw - var(--content)) / 2));
  --display: "Arial Narrow", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--lime);
  font-weight: 900;
}

.skip-link:focus { top: 1rem; }

.utility-bar {
  min-height: 36px;
  padding: 0 var(--side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #d4d8d4;
  background: #020202;
  border-bottom: 1px solid var(--dark-line);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.utility-bar p { margin: 0; }
.utility-bar div { display: flex; align-items: center; gap: 1.5rem; }
.utility-bar div span { position: relative; }
.utility-bar div span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.85rem;
  width: 4px;
  height: 4px;
  background: var(--lime);
  transform: translateY(-50%) rotate(45deg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 82px;
  padding: 0 var(--side);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2.5rem;
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid var(--dark-line);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  display: grid;
  color: #c8cdc8;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.05;
}

.brand strong {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.site-header nav { display: flex; gap: 2.2rem; }

.site-header nav a {
  position: relative;
  padding: 1.8rem 0;
  color: #d6dad6;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 1.25rem;
  left: 0;
  height: 2px;
  background: var(--lime);
  transition: right 160ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after { right: 0; }

.header-cta {
  justify-self: end;
  display: grid;
  color: var(--white);
  line-height: 1.05;
  text-align: right;
  text-decoration: none;
}

.header-cta span {
  margin-bottom: 0.28rem;
  color: var(--lime);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-cta strong {
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: 0.035em;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-bottom: 1px solid rgba(198, 255, 0, 0.18);
}

.hero-banner {
  width: 100%;
  background: #000;
  border-bottom: 1px solid rgba(198, 255, 0, 0.22);
}

.hero-banner img {
  display: block;
  width: 100%;
  max-width: 1536px;
  height: auto;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 15%, rgba(198, 255, 0, 0.08), transparent 28rem),
    var(--black);
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 5%;
  right: var(--side);
  z-index: 0;
  width: min(42vw, 540px);
  height: 88%;
  background: url("assets/sc-primary-mark.svg") center / contain no-repeat;
  opacity: 0.14;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(90%, var(--content));
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(3.8rem, 7vw, 6.5rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
}

.eyebrow {
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.7rem;
  height: 3px;
  flex: 0 0 auto;
  background: currentColor;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 50rem;
  margin-bottom: 0;
  font-size: clamp(3.4rem, 5.3vw, 6rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

h1 span,
.about h2 span { color: var(--lime); }

.hero-intro {
  max-width: 40rem;
  margin-bottom: 2.2rem;
  color: #c8cdc8;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.65;
}

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

.button {
  min-height: 56px;
  padding: 0.9rem 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--black); background: var(--lime); }
.button-primary:hover { background: #d5ff3c; }
.button-secondary { color: var(--white); background: rgba(5, 5, 5, 0.58); }
.button-secondary:hover { color: var(--black); background: var(--lime); }

.hero-trust {
  position: relative;
  z-index: 1;
  width: min(90%, var(--content));
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(9, 11, 9, 0.92);
  border: 1px solid var(--dark-line);
  border-bottom: 0;
  backdrop-filter: blur(14px);
}

.hero-trust > div {
  min-height: 112px;
  padding: 1.4rem 1.5rem;
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  align-content: center;
  border-right: 1px solid var(--dark-line);
}

.hero-trust > div:last-child { border-right: 0; }
.hero-trust span {
  grid-row: 1 / 3;
  color: var(--lime);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.hero-trust strong {
  font-family: var(--display);
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-trust small { color: var(--muted); font-size: 0.78rem; }

.services {
  padding: clamp(5.5rem, 9vw, 9rem) var(--side);
  color: var(--ink);
  background: var(--paper);
}

.section-heading {
  max-width: var(--content);
  margin: 0 auto clamp(3rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.eyebrow-dark { color: var(--lime-dark); }

.section-heading h2,
.about h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.3vw, 5.9rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.section-heading > p {
  margin-bottom: 0;
  padding-left: 1.5rem;
  color: var(--muted-dark);
  border-left: 3px solid var(--lime-dark);
  font-size: 1.02rem;
}

.services-layout {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.service-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--light-line);
  border-left: 1px solid var(--light-line);
  list-style: none;
}

.service-grid li {
  min-height: 106px;
  padding: 1.2rem 1.3rem;
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.5);
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  transition: background-color 160ms ease, color 160ms ease;
}

.service-grid li:hover { color: var(--black); background: var(--lime); }

.service-grid span {
  color: #727a72;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.service-grid strong {
  font-family: var(--display);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.1;
  text-transform: uppercase;
}

.services-poster {
  position: sticky;
  top: 110px;
  margin: 0;
  overflow: hidden;
  background: #000;
  border: 1px solid #c8cdc7;
  box-shadow: 0 28px 64px rgba(14, 20, 14, 0.16);
}

.services-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.services-poster figcaption {
  min-height: 54px;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--black);
  background: var(--lime);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.services-poster figcaption span {
  width: 4px;
  height: 4px;
  background: var(--black);
  transform: rotate(45deg);
}

.about {
  position: relative;
  padding: clamp(5.5rem, 9vw, 9rem) var(--side);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(198, 255, 0, 0.09), transparent 26rem),
    var(--black-soft);
  border-top: 1px solid rgba(198, 255, 0, 0.18);
  border-bottom: 1px solid rgba(198, 255, 0, 0.18);
}

.about::after {
  content: "SC";
  position: absolute;
  right: -2rem;
  bottom: -7rem;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.045);
  font-family: var(--display);
  font-size: clamp(18rem, 34vw, 34rem);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.about-title,
.about-grid {
  position: relative;
  z-index: 1;
  max-width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.about-title { margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.about-title h2 { max-width: 64rem; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.about-grid article {
  min-height: 250px;
  padding: 2rem;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.018);
}

.about-grid article > span {
  display: inline-block;
  margin-bottom: 3.5rem;
  color: var(--lime);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.about-grid h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  letter-spacing: 0.015em;
  line-height: 1.2;
}

.about-grid p { margin-bottom: 0; color: var(--muted); font-size: 0.92rem; }

.contact {
  padding: clamp(4rem, 7vw, 6rem) var(--side);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  color: var(--black);
  background: var(--lime);
}

.contact h2 { max-width: 43rem; }
.contact-copy > p:last-child { max-width: 39rem; margin: 1.4rem 0 0; font-weight: 600; }

.contact-actions {
  display: grid;
  justify-items: end;
  gap: 1rem;
  text-align: right;
}

.contact-phone { display: grid; line-height: 1; text-decoration: none; }
.contact-phone span {
  margin-bottom: 0.45rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-phone strong {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.7vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.contact-email {
  max-width: 100%;
  font-weight: 900;
  text-decoration-color: rgba(0, 0, 0, 0.35);
  overflow-wrap: anywhere;
}

footer {
  min-height: 94px;
  padding: 1.5rem var(--side);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  color: #969e96;
  background: #020202;
  font-size: 0.76rem;
}

footer p { margin: 0; }
footer p:nth-child(2) { text-align: center; }
footer p:last-child { justify-self: end; }
footer p span { color: var(--lime); }

.footer-brand img { width: 42px; height: 40px; object-fit: contain; }
.footer-brand strong { color: var(--white); font-size: 0.82rem; letter-spacing: 0.035em; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero-inner { margin: 0 var(--side); }
  .hero-trust { margin: 0 var(--side); }
  .services-layout { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr); gap: 2.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
  footer p:nth-child(2) { text-align: right; }
  footer p:last-child { grid-column: 1 / -1; justify-self: center; }
}

@media (max-width: 760px) {
  :root { --side: 5vw; }
  .utility-bar { min-height: 32px; justify-content: center; font-size: 0.64rem; text-align: center; }
  .utility-bar p { display: none; }
  .utility-bar div { gap: 1.1rem; }
  .utility-bar div span:nth-child(2) { display: none; }
  .utility-bar div span + span::before { left: -0.65rem; }
  .site-header { min-height: 70px; padding: 0 var(--side); }
  .brand span { font-size: 0.64rem; }
  .brand strong { font-size: 0.88rem; }
  .header-cta span { font-size: 0.6rem; }
  .header-cta strong { font-size: 0.98rem; }
  .hero-content::before {
    top: 7%;
    right: -13vw;
    width: min(82vw, 390px);
    height: 68%;
    opacity: 0.1;
  }
  .hero-inner {
    width: 100%;
    margin: 0;
    padding: 3.4rem var(--side);
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  h1 { font-size: clamp(3.35rem, 14.4vw, 5.1rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions .button { flex: 1 1 12rem; }
  .hero-trust { width: 100%; margin: 0; grid-template-columns: 1fr; border-right: 0; border-left: 0; }
  .hero-trust > div { min-height: 86px; border-right: 0; border-bottom: 1px solid var(--dark-line); }
  .hero-trust > div:last-child { border-bottom: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 2rem; }
  .section-heading h2,
  .about h2,
  .contact h2 { font-size: clamp(2.85rem, 12.5vw, 4.5rem); }
  .section-heading > p { padding-left: 1rem; }
  .services-layout { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid li { min-height: 94px; padding: 1rem; grid-template-columns: 1fr; gap: 0.25rem; }
  .services-poster { position: relative; top: auto; width: min(100%, 31rem); margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid article { min-height: 0; }
  .about-grid article > span { margin-bottom: 2rem; }
  .contact { grid-template-columns: 1fr; gap: 2.4rem; }
  .contact-actions { justify-items: start; text-align: left; }
  footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  footer p:nth-child(2) { text-align: center; }
  footer p:last-child { grid-column: auto; justify-self: center; }
}

@media (max-width: 420px) {
  .utility-bar div span:first-child { display: none; }
  .utility-bar div span:nth-child(3)::before { display: none; }
  .service-grid strong { font-size: 0.92rem; }
}

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