/* Design tokens */
:root {
  --red: #d91f2b;
  --red-dark: #aa111a;
  --green: #0e6a40;
  --ink: #111313;
  --muted: #6d7270;
  --paper: #fff;
  --off: #f4f5f3;
  --line: #dfe2df;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
/* Base and typography */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  background: var(--paper);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: 110px 0;
}
.section-muted {
  background: var(--off);
}
.section-dark {
  background: #111413;
  color: #fff;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: Oswald, Impact, sans-serif;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(4rem, 8vw, 7.8rem);
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(3rem, 5.2vw, 5rem);
  margin-bottom: 28px;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--red);
}
.section-dark h2 em {
  color: #ef3540;
}
.lead {
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.55;
  color: #2c312f;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.eyebrow span {
  position: relative;
  width: 33px;
  height: 12px;
  background: var(--red);
  clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
  flex: 0 0 auto;
}
.eyebrow span::before,
.eyebrow span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 12px;
  background: #fff;
  transform: skewX(-18deg);
}
.eyebrow span::before {
  left: 12px;
}
.eyebrow span::after {
  left: 19px;
}
.eyebrow.light {
  color: #fff;
}
.eyebrow.light span {
  background: #fff;
}
.eyebrow.light span::before,
.eyebrow.light span::after {
  background: var(--red);
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12%;
  align-items: start;
}
.intro-copy {
  padding-top: 10px;
}
.intro-copy p:not(.lead) {
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  margin-top: 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.text-link span {
  font-size: 1.35rem;
  transition: transform 0.25s;
}
.text-link:hover span {
  transform: translateX(6px);
}
.light-link {
  color: #fff;
}
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.73rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.25s,
    background 0.25s;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
}
.button:hover::before {
  animation: button-sweep 0.7s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: #fff;
  background: var(--red);
}
.button-primary:hover {
  background: var(--red-dark);
}
.button-outline {
  border: 1px solid #5a5f5c;
  color: #fff;
}
.button-outline:hover {
  background: #fff;
  color: #111;
}
.button-white {
  background: #fff;
  color: #111;
}
.button-white:hover {
  background: var(--green);
  color: #fff;
}
/* Header and navigation */
.topbar {
  background: var(--green);
  color: #fff;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.topbar-inner {
  height: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  position: relative;
  width: 105px;
  height: 76px;
  overflow: hidden;
}
.brand img {
  position: absolute;
  width: 92px;
  height: 92px;
  object-fit: contain;
  top: -7px;
  left: 0;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 0.71rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 35px 0;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 23px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.site-nav > a:hover::after,
.site-nav > a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  padding: 15px 20px;
  background: var(--red);
  color: #fff;
}
.nav-cta span {
  margin-left: 16px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px;
  background: #111;
}
/* Home hero */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  background: url("../images/tss-industrial-hero.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 11, 10, 0.94) 0%,
    rgba(8, 11, 10, 0.67) 38%,
    rgba(8, 11, 10, 0.08) 75%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
.hero h1 {
  max-width: 850px;
}
.hero p {
  max-width: 590px;
  color: #d9ddda;
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-top: 40px;
}
.hero-geometry {
  --parallax-y: 0px;
  position: absolute;
  z-index: 1;
  right: -70px;
  bottom: 8%;
  width: 430px;
  height: 180px;
  transform: translateY(var(--parallax-y));
  transition: transform 0.15s linear;
  pointer-events: none;
}
.hero-geometry i {
  position: absolute;
  display: block;
  height: 42px;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  animation: none;
}
.hero-geometry i:nth-child(1) {
  right: 0;
  top: 0;
  width: 310px;
  background: rgba(217, 31, 43, 0.78);
}
.hero-geometry i:nth-child(2) {
  right: 85px;
  top: 55px;
  width: 210px;
  background: rgba(255, 255, 255, 0.82);
  animation-delay: -2s;
}
.hero-geometry i:nth-child(3) {
  right: 35px;
  top: 110px;
  width: 145px;
  background: rgba(14, 106, 64, 0.9);
  animation-delay: -4s;
}
.edge-shape {
  position: absolute;
  top: -24px;
  right: 5%;
  width: 190px;
  height: 48px;
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  opacity: 0.95;
}
.edge-shape-green {
  background: var(--green);
}
.section-slant {
  position: absolute;
  right: -35px;
  top: 70px;
  width: 165px;
  height: 34px;
  background: var(--red);
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
}
.section-slant::after {
  content: "";
  position: absolute;
  right: 35px;
  top: 46px;
  width: 100px;
  height: 15px;
  background: var(--green);
  clip-path: inherit;
}
.solutions .eyebrow span {
  background: var(--green);
}
.solutions .eyebrow span::before,
.solutions .eyebrow span::after {
  background: #fff;
}
.hero-footer {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 15, 13, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stats-row > div {
  padding: 25px 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.stats-row > div:first-child {
  padding-left: 0;
}
.stats-row strong {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 1.8rem;
  color: #fff;
}
.stats-row small {
  color: #aeb6b1;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* Shared section layouts */
.section-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 10%;
  margin-bottom: 55px;
}
.section-top p {
  color: var(--muted);
  margin-bottom: 5px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.solution-card {
  position: relative;
  min-height: 500px;
  background: #111;
  overflow: hidden;
  color: #fff;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.solution-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 90px;
  height: 7px;
  background: var(--green);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  transition: width 0.45s var(--ease);
}
.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.94),
    rgba(0, 0, 0, 0.05) 70%
  );
}
.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.solution-card:nth-child(2) img {
  object-position: center;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(20, 27, 23, 0.16);
}
.solution-card:hover::before {
  width: 55%;
}
.solution-card:hover img {
  transform: scale(1.04);
}
.card-content {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
}
.card-content > span {
  color: #ef4b54;
  font-size: 0.7rem;
  font-weight: 700;
}
.card-content h3 {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  margin: 8px 0;
}
.card-content p {
  color: #c3c8c5;
  font-size: 0.88rem;
  line-height: 1.55;
  padding-right: 25px;
}
.card-content a {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--red);
  font-size: 1.3rem;
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
}
/* Why choose TSS */
.why-choose {
  position: relative;
  overflow: hidden;
}
.promise-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12%;
  align-items: center;
}
.promise-grid > div:first-child > p {
  color: #aeb5b1;
  max-width: 500px;
  margin-bottom: 30px;
}
.promise-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #383d3b;
  border-left: 1px solid #383d3b;
}
.promise-list > div {
  position: relative;
  padding: 34px;
  border-right: 1px solid #383d3b;
  border-bottom: 1px solid #383d3b;
  overflow: hidden;
  transition:
    background 0.35s,
    transform 0.35s;
}
.promise-list > div::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -8px;
  width: 100px;
  height: 22px;
  background: var(--green);
  opacity: 0;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
  transform: translateX(35px);
  transition:
    opacity 0.35s,
    transform 0.35s;
}
.promise-list > div:hover {
  background: #181d1b;
  transform: translateY(-4px);
}
.promise-list > div:hover::after {
  opacity: 1;
  transform: none;
}
.promise-list span {
  color: #ef414b;
  font-size: 0.7rem;
}
.promise-list i {
  position: absolute;
  right: 25px;
  top: 23px;
  color: #315b45;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.1em;
  font-style: normal;
}
.promise-list h3 {
  margin: 12px 0 8px;
  text-transform: uppercase;
  font-size: 1rem;
}
.promise-list p {
  color: #949c97;
  font-size: 0.85rem;
  margin: 0;
}
.why-geometry {
  --parallax-y: 0px;
  position: absolute;
  left: -150px;
  bottom: 45px;
  width: 390px;
  height: 120px;
  transform: translateY(var(--parallax-y)) rotate(-7deg);
  opacity: 0.15;
}
.why-geometry i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 42px;
  background: var(--red);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
.why-geometry i + i {
  left: 80px;
  top: 55px;
  width: 75%;
  background: var(--green);
}
/* Partner and call-to-action sections */
.partner-strip {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.partner-strip::before,
.partner-strip::after {
  content: "//";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) skewX(-12deg);
  font-weight: 900;
  letter-spacing: -0.15em;
}
.partner-strip::before {
  left: 2%;
  color: var(--red);
}
.partner-strip::after {
  right: 2%;
  color: var(--green);
}
.partner-inner {
  display: grid;
  grid-template-columns: auto 260px 1fr;
  align-items: center;
  gap: 40px;
}
.partner-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.partner-inner img {
  width: 260px;
}
.partner-inner span {
  text-align: right;
  color: var(--muted);
  font-size: 0.82rem;
}
.cta-section {
  background: #fff;
}
.cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10%;
  align-items: end;
  padding: 70px;
  background: var(--red);
  color: #fff;
}
.cta-box::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -28px;
  width: 310px;
  height: 64px;
  background: var(--green);
  clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);
  opacity: 0.8;
}
.cta-box h2 {
  margin: 0;
  color: #fff;
}
.cta-box p {
  max-width: 390px;
}
.cta-box .eyebrow span {
  background: #fff;
}
/* Footer */
.site-footer {
  padding: 75px 0 28px;
  background: #0b0e0d;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 12%;
  padding-bottom: 55px;
}
.footer-logo {
  width: 130px;
  height: 110px;
  object-fit: contain;
  object-position: top;
  margin-bottom: 10px;
}
.footer-grid h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8c9690;
  margin-bottom: 20px;
}
.footer-grid a,
.footer-grid p {
  display: block;
  color: #d0d5d2;
  font-size: 0.84rem;
  margin: 0 0 10px;
}
.footer-bottom {
  border-top: 1px solid #252a27;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: #747e78;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* Inner-page heroes and reveal animations */
.page-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 10, 9, 0.92),
    rgba(7, 10, 9, 0.25)
  );
}
.page-hero .container {
  position: relative;
}
.page-hero h1 {
  font-size: clamp(3.7rem, 7vw, 6.8rem);
  max-width: 1000px;
}
.page-hero p {
  max-width: 600px;
  color: #d2d8d4;
  font-size: 1.08rem;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.cards-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.cards-grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}
@keyframes shape-drift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-18px);
  }
}
@keyframes button-sweep {
  to {
    transform: translateX(120%);
  }
}
/* Responsive layout */
@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }
  .section {
    padding: 80px 0;
  }
  .topbar-inner span {
    display: none;
  }
  .topbar-inner {
    justify-content: center;
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    position: fixed;
    inset: 120px 0 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 28px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .nav-open .site-nav {
    transform: none;
  }
  .site-nav > a:not(.nav-cta) {
    padding: 21px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.85rem;
  }
  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }
  .nav-cta {
    text-align: center;
    margin-top: 22px;
  }
  .split,
  .section-top,
  .promise-grid,
  .impact-grid,
  .service-feature,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 45px !important;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .solution-card {
    min-height: 480px;
  }
  .partner-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .partner-inner img {
    margin: auto;
  }
  .partner-inner span {
    text-align: center;
  }
  .cta-box {
    grid-template-columns: 1fr;
    padding: 45px;
    gap: 35px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .hero {
    min-height: 720px;
    background-position: 64% center;
  }
  .hero-content {
    padding-bottom: 40px;
  }
  .hero-geometry {
    right: -180px;
    opacity: 0.7;
  }
  .edge-shape {
    right: -55px;
  }
  .section-slant {
    right: -85px;
  }
  .stats-row > div {
    padding: 18px 12px;
  }
  .stats-row strong {
    font-size: 1.35rem;
  }
  .stats-row small {
    font-size: 0.57rem;
  }
  .promise-list > div {
    padding: 25px;
  }
  .page-hero {
    min-height: 500px;
  }
}
@media (max-width: 560px) {
  h1 {
    font-size: 3.9rem;
  }
  h2 {
    font-size: 2.8rem;
  }
  .hero {
    min-height: 760px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-row > div {
    padding: 15px 5px;
  }
  .stats-row small {
    display: none;
  }
  .cards-grid {
    gap: 16px;
  }
  .solution-card {
    min-height: 430px;
  }
  .promise-list {
    grid-template-columns: 1fr;
  }
  .cta-box {
    padding: 36px 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .page-hero {
    min-height: 480px;
  }
  .page-hero h1 {
    font-size: 3.5rem;
  }
  .partner-inner img {
    width: 220px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Shared geometric navigation, hero corners and section rhythm */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  isolation: isolate;
  transition:
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}
.site-header::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: max(132px, calc((100% - var(--max)) / 2 + 128px));
  bottom: -1px;
  width: 112px;
  height: 8px;
  background: linear-gradient(
    105deg,
    var(--red) 0 29%,
    transparent 29% 35%,
    var(--green) 35% 64%,
    transparent 64% 70%,
    #daddda 70% 100%
  );
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
}
.site-header.is-stuck {
  box-shadow: 0 12px 35px rgba(11, 18, 14, 0.12);
}
.nav-wrap {
  position: relative;
  z-index: 1;
}
.nav-cta {
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
  padding-inline: 27px;
}
.footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.hero-corner-shapes {
  --parallax-y: 0px;
  position: absolute;
  z-index: 2;
  right: -42px;
  bottom: 34px;
  width: 330px;
  height: 132px;
  transform: translateY(var(--parallax-y));
  pointer-events: none;
}
.hero-corner-shapes i {
  position: absolute;
  right: 0;
  display: block;
  height: 31px;
  clip-path: polygon(11% 0, 100% 0, 89% 100%, 0 100%);
  animation: none;
}
.hero-corner-shapes i:nth-child(1) {
  bottom: 78px;
  width: 260px;
  background: rgba(217, 31, 43, 0.9);
}
.hero-corner-shapes i:nth-child(2) {
  right: 42px;
  bottom: 39px;
  width: 205px;
  background: rgba(255, 255, 255, 0.9);
  animation-delay: -2s;
}
.hero-corner-shapes i:nth-child(3) {
  right: 10px;
  bottom: 0;
  width: 150px;
  background: rgba(14, 106, 64, 0.94);
  animation-delay: -4s;
}
.page-hero {
  overflow: hidden;
}
.page-hero .container {
  z-index: 3;
}

@keyframes corner-slide {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-14px);
  }
}

@media (max-width: 900px) {
  .site-header::after {
    left: 118px;
  }
  .site-nav {
    inset: 120px 0 0;
  }
  .site-header.is-stuck .site-nav {
    inset: 88px 0 0;
  }
  .hero-corner-shapes {
    right: -115px;
    bottom: 24px;
    opacity: 0.82;
  }
  .nav-cta {
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  }
}
@media (max-width: 560px) {
  .site-header::after {
    width: 78px;
    left: 105px;
  }
  .hero-corner-shapes {
    right: -165px;
    bottom: 18px;
    opacity: 0.72;
  }
  .hero-geometry {
    right: -245px;
    bottom: 2%;
  }
}

/* Static, thick three-piece hero treatment */
.hero-geometry {
  right: -95px;
  bottom: 4%;
  width: 570px;
  height: 270px;
  transform: none;
  transition: none;
}
.hero-geometry i {
  height: 72px;
  animation: none;
}
.hero-geometry i:nth-child(1) {
  right: 0;
  top: 0;
  width: 480px;
}
.hero-geometry i:nth-child(2) {
  right: 66px;
  top: 90px;
  width: 400px;
}
.hero-geometry i:nth-child(3) {
  right: 20px;
  top: 180px;
  width: 320px;
}
.hero-corner-shapes {
  right: -95px;
  bottom: 28px;
  width: 570px;
  height: 270px;
  transform: none;
}
.hero-corner-shapes i {
  height: 72px;
  animation: none;
}
.hero-corner-shapes i:nth-child(1) {
  bottom: 180px;
  width: 480px;
}
.hero-corner-shapes i:nth-child(2) {
  right: 66px;
  bottom: 90px;
  width: 400px;
}
.hero-corner-shapes i:nth-child(3) {
  right: 20px;
  bottom: 0;
  width: 320px;
}
@media (max-width: 900px) {
  .hero-corner-shapes {
    right: -260px;
    bottom: 20px;
    opacity: 0.82;
  }
  .hero-geometry {
    right: -270px;
    bottom: 2%;
    opacity: 0.82;
  }
}
@media (max-width: 560px) {
  .hero-corner-shapes {
    right: -330px;
    bottom: 12px;
    opacity: 0.75;
  }
  .hero-geometry {
    right: -345px;
    bottom: 0;
    opacity: 0.75;
  }
}

/* Looping hero headline and corrected image crop */
.hero,
.page-hero {
  background-attachment: fixed;
}
.hero {
  background-position: center 45%;
}
.hero h1,
.page-hero h1 {
  min-height: 2em;
}
.hero h1.type-on::after,
.page-hero h1.type-on::after {
  content: "";
  display: inline-block;
  width: 0.055em;
  height: 0.82em;
  margin-left: 0.08em;
  background: currentColor;
  vertical-align: -0.04em;
  animation: type-caret 0.75s steps(1, end) infinite;
}
@keyframes type-caret {
  50% {
    opacity: 0;
  }
}
@media (max-width: 900px) {
  .hero {
    background-position: 72% center;
  }
  .hero h1,
  .page-hero h1 {
    min-height: 2.08em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1.type-on::after,
  .page-hero h1.type-on::after {
    display: none;
  }
}
.developer-credit {
  color: #aeb8b2;
  transition: color 0.25s;
}
.developer-credit strong {
  color: #fff;
  font-weight: 800;
}
.developer-credit:hover {
  color: #fff;
}
.developer-credit:hover strong {
  color: #ef3540;
}
