:root {
  --teal: #14b8a6;
  --teal-dark: #0d9488;
  --ink: #f6fbff;
  --muted: #a9b8c9;
  --page: #0e1728;
  --panel: #17243a;
  --panel-soft: #22324a;
  --panel-line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --container: min(1540px, calc(100vw - 40px));
  --shell: min(1840px, calc(100vw - 24px));
  --site-header-offset: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header-offset);
}

[id] {
  scroll-margin-top: var(--site-header-offset);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 0%, rgba(20, 184, 166, 0.2), transparent 26rem),
    linear-gradient(180deg, #111c2f 0%, #0e1728 28%, #0b1424 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.25rem, 4.5vw, 5.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 3vw, 4rem);
  font-weight: 500;
  text-align: center;
}

h2 span,
h3 span {
  color: var(--teal);
}

.text-white {
  color: #fff !important;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
  border-radius: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  color: #052f2d;
  background: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.23);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: #20d0bd;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(20, 184, 166, 0.32);
}

.button-light {
  background: #fff;
  color: #0b1729;
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  background: #e8fffb;
}

.button-small {
  min-height: 36px;
  padding-inline: 18px;
  font-size: 0.82rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 0 6px;
  background: transparent;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.site-header .nav {
  padding: 18px 22px;
}

.brand {
  display: inline-flex;
  width: 190px;
  overflow: hidden;
}

.brand img,
.footer>img {
  width: 190px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
  color: #d8e1eb;
  font-size: 0.9rem;
  font-weight: 720;
}

.nav-links a:not(.button) {
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  text-align: left;
  opacity: 1;
}

.nav-links a:not(.button):hover,
.nav-links a:not(.button):focus-visible {
  color: var(--teal);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

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

.js .reveal.is-visible {
  animation: reveal-up 650ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.js .reveal.reveal-left.is-visible {
  animation-name: reveal-left-to-right;
}

.js .reveal.reveal-right.is-visible {
  animation-name: reveal-right-to-left;
}

.js .process-list .process-card.reveal.is-visible {
  animation: none;
}

.js .process-list .process-card.reveal {
  opacity: 0;
  transform: translateX(-96px);
  transition:
    opacity 650ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .process-list .process-card.reveal:nth-child(even) {
  transform: translateX(96px);
}

.js .process-list .process-card.reveal:nth-child(even).is-visible {
  animation: none;
}

.js .process-list .process-card.reveal.is-visible,
.js .process-list .process-card.reveal:nth-child(even).is-visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes reveal-up {
  from {
    transform: translateY(24px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes reveal-left-to-right {
  from {
    transform: translateX(-96px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes reveal-right-to-left {
  from {
    transform: translateX(96px);
  }

  to {
    transform: translateX(0);
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 32px;
  min-height: 420px;
  margin-top: -60px;
  padding: clamp(32px, 9vw, 64px) clamp(32px, 6vw, 64px) clamp(32px, 7vw, 64px);
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(20, 184, 166, 0.03), rgba(20, 184, 166, 0.55)),
    #111d30;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.hero .hero-title {}

.hero-bg,
.watermark {
  position: absolute;
  inset: 0;
  background-image: url("images/IconTorqueFull.png");
  background-repeat: no-repeat;
  background-size: min(58vw, 920px) auto;
  background-position: 24% 50%;
  opacity: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  font-weight: 300;
}

.eyebrow,
.kicker {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  font-size: clamp(1rem, 1.15vw, 1.22rem);
}

.hero-content .button {
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: end;
  min-width: 0;
  transform: translateX(4%);
}

.hero-visual img {
  width: min(850px, 100%);
  margin-left: auto;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.32));
}

.tool-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 26px clamp(20px, 3vw, 60px);
  background: var(--panel);
}

.tool-strip a {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 8px;
  min-width: 0;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0;
  opacity: 1;
  padding: 8px 10px;
  border-radius: 8px;
}

.tool-strip a .icon {
  font-size: 36px;
  padding: 0;
  margin: 0;
  width: auto;
  height: auto;
  background: none;
}

.tool-strip a.is-active {
  color: #fff;
  background: #334155;
}

.tool-strip a.is-active .icon {}

.feature-slider {
  position: relative;
  margin-top: 0;
}

.module-slider {
  width: var(--container);
  margin-inline: auto;
  overflow: hidden;
  touch-action: pan-y;
}

.module-track {
  display: flex;
  transition: transform 840ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.feature-slider .module-panel {
  flex: 0 0 100%;
  width: 100%;
  margin-inline: 0;
  padding-inline: clamp(84px, 5vw, 112px);
}

.feature-slider .module-panel[hidden] {
  display: none;
}

.js .feature-slider .reveal.module-panel,
.js .feature-slider .reveal.module-panel.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.module-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #0f172a;
  background: rgba(203, 213, 225, 0.9);
  transform: translateY(-50%);
  font-size: 24px;
  cursor: pointer;
  border: none;
}

.module-slider-arrow:hover,
.module-slider-arrow:focus-visible {
  color: #0f172a;
  background: rgba(203, 213, 225, 1);
}

.module-slider-prev {
  left: 28px;
}

.module-slider-next {
  right: 28px;
}

.icon,
.benefit-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal);
}

.icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.1);
  font-size: 1.1rem;
}

.feature-module {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 60px;
  min-height: 400px;
  padding-block: 110px;
}



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

.section-copy h2 {
  text-align: left;
  font-size: clamp(2rem, 2.25vw, 3.5rem);
  font-weight: 500;
}

.section-copy .module-icon {
  font-size: 48px;
  color: var(--teal);
}

.section-copy p:not(.kicker) {
  margin-top: 22px;
  font-size: 1.04rem;
}

.module-cards {
  position: relative;
  min-height: 315px;
}

.module-cards div {
  position: absolute;
  width: min(320px, 72%);
  aspect-ratio: 1.28;
  border-radius: 18px;
  background: #31425a;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
}

.module-cards div:first-child {
  top: 0;
  left: 0;
}

.module-cards div:last-child {
  right: 8%;
  bottom: 0;
  opacity: 0.85;
}

.benefits,
.testimonials {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 7vw, 132px) clamp(24px, 5vw, 120px);
  background: url(images/IconTorqueFull.png) no-repeat top left, linear-gradient(180deg, rgba(34, 50, 74, 0.95), rgba(23, 36, 58, 0.95));
}

.benefit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 56px auto 38px;
  max-width: 1250px;
}

.benefit-grid article {
  min-height: 310px;
  padding: 46px 30px;
  border-radius: 22px;
  background: #31425a;
  text-align: center;
}

.benefit-icon {
  margin: 0 auto 26px;
  height: 52px;
  font-size: 2.35rem;
  font-weight: 850;
}

img.benefit-icon {
  display: block;
  width: 52px;
  object-fit: contain;
}

.benefit-grid h3,
.news-grid h3 {
  font-size: 1.4rem;
}

.benefit-grid p,
.news-grid p {
  margin-top: 14px;
  font-size: 0.95rem;
}

.benefits .button,
.news .button {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}

.benefits .button,
.news .button,
.cta .button {
  display: flex;
  width: fit-content;
  margin-inline: auto;
}

.process {
  padding-block: clamp(96px, 10vw, 170px) 54px;
}

.process.container {
  overflow-x: hidden;
}

.process h2 {
  max-width: 850px;
  margin: 0 auto 54px;
}

.process h2 span {
  display: block;
}

.process-list {
  display: grid;
  gap: 28px;
  max-width: 1280px;
  margin-inline: auto;
}

.process-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: stretch;
  min-height: 400px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--panel);
}

.process-copy {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 3.4vw, 54px);
}

.process-copy span {
  display: block;
  margin-bottom: 30px;
  color: var(--teal);
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  font-weight: 500;
}

.process-copy span .svg-inline--fa {
  width: auto;
}

.process-copy h3 {
  font-size: clamp(1.55rem, 1.75vw, 2.35rem);
}

.process-copy p {
  max-width: 520px;
  margin-top: 18px;
  font-size: 1rem;
}

.process-copy a {
  display: inline-block;
  margin-top: 24px;
  color: var(--teal);
  font-weight: 800;
}

.process-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  max-height: 400px;
  overflow: hidden;
  background:
    url("images/IconTorque.png") top left no-repeat;
}

.process-media::before,
.process-media::after {
  content: none !important;
}

.process-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 760px);
  max-height: 100%;
  object-fit: contain;
}

.js .process-media img {
  opacity: 0;
  transition:
    opacity 700ms ease;
}

.js .process-card.is-visible .process-media img {
  opacity: 1;
  transition-delay: 180ms;
}

.process-media.integration-media img {
  max-height: 110%;
  width: auto;
  height: auto;
}

.phone-media img {
  max-height: 620px;
}

.integration-media img {
  width: min(100%, 640px);
  max-height: 390px;
}

.integration-media {
  display: flex !important;
}

.integration-media b {
  display: none !important;
}

.table-media img,
.group-media img {
  width: min(100%, 860px);
}

.phone-media::before {
  content: "";
  position: absolute;
  inset: 20px 4% 0 auto;
  width: min(520px, 94%);
  background: url("images/image-in-slider-header.webp") center / contain no-repeat;
  filter: saturate(0.78) brightness(0.72);
}

.phone-media::after,
.notification-media::after,
.dashboard-media::after {
  position: absolute;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 850;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
}

.phone-media::after {
  content: "A";
  top: 48px;
  left: 24%;
  background: #2586ff;
}

.notification-media::before {
  content: "";
  position: absolute;
  inset: 42px 8% auto auto;
  width: min(520px, 90%);
  height: 190px;
  border-radius: 18px;
  background: linear-gradient(180deg, #16a494, #0f756d);
}

.notification-media::after {
  content: "";
  left: 25%;
  bottom: 58px;
  width: min(380px, 64%);
  height: 86px;
  border-radius: 24px;
  background: #f8fbff;
}

.dashboard-media::before,
.table-media::before,
.report-media::before,
.group-media::before {
  content: "";
  position: absolute;
  inset: 52px 8% 42px 0;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(20, 184, 166, 0.18), transparent 30%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.13) 0 2px, transparent 2px 34px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 80px),
    #0f1a2c;
}

.dashboard-media::after {
  content: "↗";
  top: 34px;
  left: 28%;
  background: #2e7bff;
}

.integration-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(62px, 110px));
  place-content: center;
  gap: 18px;
}

.integration-media b {
  display: grid;
  place-items: center;
  min-height: 70px;
  border-radius: 14px;
  color: #17243a;
  background: #f8fbff;
  font-size: 1.2rem;
}

.table-media::before {
  background:
    linear-gradient(90deg, rgba(20, 184, 166, 0.55) 0 9%, transparent 9%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 42px),
    repeating-linear-gradient(90deg, rgba(20, 184, 166, 0.22) 0 2px, transparent 2px 96px),
    #101d30;
}

.report-media::before {
  background:
    linear-gradient(90deg, #14b8a6 0 12%, #f2a93b 12% 22%, #d15266 22% 30%, transparent 30%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.13) 0 2px, transparent 2px 38px),
    #101d30;
}

.group-media::before {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.13) 0 2px, transparent 2px 34px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 58px),
    #0f1a2c;
}

.news {
  padding-block: 88px 120px;
  text-align: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1220px;
  margin: 42px auto 38px;
  text-align: left;
}

.news-grid article {
  overflow: hidden;
  border-radius: 20px;
  background: var(--panel);
}

.news-grid h3,
.news-grid p {
  padding-inline: 28px;
}

.news-grid h3 {
  margin-top: 26px;
}

.news-grid p {
  padding-bottom: 30px;
}

.news-image {
  position: relative;
  min-height: 325px;
  background: linear-gradient(135deg, #23344f, #0d1423);
}

.news-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 18, 31, 0.2), rgba(10, 18, 31, 0.15)),
    url("images/placeholder-596x325.png") center / cover no-repeat;
  opacity: 0.72;
}



/* .play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.play::before {
  content: "";
  margin-left: 5px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid var(--teal);
} */

.testimonials {
  padding-bottom: 104px;

}

.testimonial-slider {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 52px auto 34px;
  padding-inline: 62px;
}

.slider-viewport {
  overflow: hidden;
}

.testimonial-track {
  --slide-gap: 24px;
  display: flex;
  gap: var(--slide-gap);
  transition: transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 calc((100% - (var(--slide-gap) * 2)) / 3);
  min-height: 285px;
  padding: 42px;
  border-radius: 18px;
  background: #31425a;
  opacity: 0.62;
  transition: opacity 260ms ease, transform 260ms ease, background-color 260ms ease;
}

.testimonial-slide.is-active {
  opacity: 1;
  background: #354861;
  transform: translateY(-3px);
}

.testimonial-slide p {
  color: #dce8f2;
  font-weight: 650;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #0d1728;
  background: rgba(255, 255, 255, 0.9);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background-color 180ms ease;
}

.slider-arrow::before {
  display: block;
  transform: translateY(-2px);
}

.slider-prev::before {
  content: "‹";
}

.slider-next::before {
  content: "›";
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.person {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 14px;
  align-items: center;
  margin-top: 34px;
  color: #fff;
}

.person span {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e7edf4;
}

.person strong,
.person small {
  display: block;
}

.person small {
  color: var(--muted);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.dots button {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.dots button::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #62728a;
}

.dots button.is-active::before {
  background: var(--teal);
}

.cta {
  position: relative;
  overflow: hidden;
  margin-top: 88px;
  padding: clamp(72px, 7vw, 112px) 24px;
  border-radius: 22px;
  background: url(images/IconTorqueFull.png) no-repeat center center, linear-gradient(180deg, #123a42, rgba(20, 184, 166, 0.95));
  text-align: center;
}

.cta .watermark {
  opacity: 0.14;
  background-position: center;
}

.cta p {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 18px auto 30px;
  font-size: clamp(16px, 20px, 22px);
  color: #fff;
  font-weight: 500;
}

.footer {
  display: grid;
  grid-template-columns: minmax(190px, 0.62fr) minmax(520px, 1.38fr);
  column-gap: clamp(48px, 8vw, 150px);
  row-gap: 26px;
  align-items: stretch;
  padding-block: 42px 30px;
}

.footer-brand {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 18px;
}

.footer-brand img {
  height: auto;
}

.footer .button {
  min-height: 40px;
  padding-inline: 22px;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: none;
}

.contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 58px);
  align-items: end;
  align-self: stretch;
}

address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

address strong {
  display: block;
  color: #fff;
}

.contact-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: end;
  min-width: 0;
}

.contact-photo {
  width: auto;
  max-height: 115px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.22));
}

.contact-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  padding-bottom: 5px;
  color: #dce8f2;
  font-size: 0.9rem;
  line-height: 1.25;
}

.contact-copy strong {
  font-size: 1.2rem;
  line-height: 1.05;
}

.contact-copy a,
.legal a {
  color: #dce8f2;
}

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

.legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #76869a;
  font-size: 0.86rem;
}

@media (max-width: 1300px) {
  .tool-strip {
    gap: 8px;
    padding: 20px clamp(20px, 1vw, 20px);
  }

  .tool-strip a {
    font-size: 15px;
    padding: 8px 8px;
    gap: 4px;
  }

  .tool-strip a .icon {
    font-size: 30px;
  }
}

@media (max-width: 1200px) {

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

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-visual {
    transform: none;
  }

  .hero-visual img {
    margin-inline: auto;
  }

  .process-card {
    grid-template-columns: 1fr;
    background: url(images/IconTorqueFull.png) center right no-repeat, var(--panel);
  }

  .process-media {
    background-image: none;
    min-height: 320px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100vw - 28px, 1540px);
    --shell: min(100vw - 16px, 1840px);
  }

  .site-header {
    padding-top: 8px;
  }

  .nav {
    min-height: 60px;
    padding-inline: 14px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.58);
  }

  .nav-links a.button {
    max-width: 200px;
    padding: 10px !important;
    min-height: 32px !important;
    margin-top: 10px;
  }

  .brand,
  .brand img {
    width: 148px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(8, 18, 32, 0.98), rgba(13, 63, 68, 0.96));
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
    `n backdrop-filter: blur(18px);
  }

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

  .nav-links a {
    padding: 14px;
  }

  .hero {
    margin-top: -68px;
    padding: 122px 22px 30px;
    border-radius: 18px;
  }

  .hero-content p:not(.eyebrow) {
    margin-top: 18px;
  }

  .tool-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    overflow: visible;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
  }

  .tool-strip a {
    min-height: 42px;
    padding: 7px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    white-space: nowrap;
  }

  .tool-strip a .icon {
    flex: 0 0 auto;
    font-size: 26px;
  }

  .module-slider {
    width: 100%;
  }

  .feature-slider .module-panel {
    padding-inline: 0;
  }

  .module-slider-arrow {
    display: none;
  }

  .feature-module,
  .news-grid,
  .footer,
  .contacts {
    grid-template-columns: 1fr;
  }

  .footer {
    row-gap: 30px;
  }

  .contacts {
    max-width: 620px;
  }

  .feature-module {
    gap: 24px;
    min-height: 0;
    padding-block: 58px;
  }

  .module-cards {
    min-height: 235px;
  }

  .benefits,
  .testimonials {
    border-radius: 18px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .benefit-grid article {
    min-height: 0;
  }

  .process {
    padding-top: 64px;
  }

  .process h2 {
    margin-bottom: 34px;
  }

  .process-card {
    min-height: 0;
    border-radius: 18px;
  }

  .process-copy span {
    margin-bottom: 18px;
  }

  .process-media {
    min-height: 250px;
    max-height: 250px;
  }

  .news-image {
    min-height: 210px;
  }

  .testimonial-slider {
    padding-inline: 0;
  }

  .testimonial-track {
    --slide-gap: 16px;
  }

  .testimonial-slide {
    flex-basis: 100%;
    min-height: 0;
  }

  .slider-arrow {
    top: auto;
    bottom: -62px;
    width: 40px;
    height: 40px;
    transform: none;
  }

  .slider-arrow:hover,
  .slider-arrow:focus-visible {
    transform: scale(1.05);
  }

  .slider-prev {
    left: calc(50% - 72px);
  }

  .slider-next {
    right: calc(50% - 72px);
  }

  .dots {
    margin-top: 74px;
  }

  .footer-brand img {
    width: 158px;
  }
}

@keyframes mobile-menu-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .button {
    width: 100%;
    max-width: 330px;
    min-height: 46px;
    padding-inline: 18px;
    font-size: 0.88rem;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero-visual img {
    width: 112%;
    max-width: none;
    margin-left: -5%;
  }

  .tool-strip {
    padding: 16px;
  }

  .section-copy h2,
  h2 {
    text-align: left;
  }

  .benefits h2,
  .testimonials h2,
  .cta h2,
  .news h2 {
    text-align: center;
  }

  .process-card {
    gap: 0;
  }

  .process-copy {
    padding: 26px 22px;
  }

  .process-media {
    min-height: 210px;
  }

  .integration-media {
    grid-template-columns: repeat(2, minmax(70px, 110px));
  }

  .news-grid h3,
  .news-grid p {
    padding-inline: 22px;
  }

  .footer .button {
    width: fit-content;
  }

  .contacts {
    gap: 22px;
  }

  .contact-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-photo {
    width: 64px;
    height: 90px;
  }

  .legal {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* Tailwind-like utility classes */
.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

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

.leading-none {
  line-height: 0;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-1 {
  flex: 1 1 0%;
}

.shrink-0 {
  flex-shrink: 0;
}

.grow {
  flex-grow: 1;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.w-fit {
  width: fit-content;
}

.w-1\/2 {
  width: 50%;
}

.w-1\/3 {
  width: 33.333333%;
}

.w-2\/3 {
  width: 66.666667%;
}

.w-1\/4 {
  width: 25%;
}

.w-3\/4 {
  width: 75%;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.h-fit {
  height: fit-content;
}

.min-h-screen {
  min-height: 100vh;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.m-5 {
  margin: 1.25rem;
}

.m-6 {
  margin: 1.5rem;
}

.m-7 {
  margin: 1.75rem;
}

.m-8 {
  margin: 2rem;
}

.m-9 {
  margin: 2.25rem;
}

.m-10 {
  margin: 2.5rem;
}

.m-11 {
  margin: 2.75rem;
}

.m-12 {
  margin: 3rem;
}

.m-auto {
  margin: auto;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-10 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.mx-12 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-auto {
  margin-top: auto;
}

.mr-0 {
  margin-right: 0;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.mr-12 {
  margin-right: 3rem;
}

.mr-auto {
  margin-right: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-0 {
  margin-left: 0;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.ml-8 {
  margin-left: 2rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.ml-12 {
  margin-left: 3rem;
}

.ml-auto {
  margin-left: auto;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-7 {
  padding: 1.75rem;
}

.p-8 {
  padding: 2rem;
}

.p-9 {
  padding: 2.25rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-11 {
  padding: 2.75rem;
}

.p-12 {
  padding: 3rem;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.pr-12 {
  padding-right: 3rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pl-12 {
  padding-left: 3rem;
}

.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.contact-dialog {
  width: min(92vw, 620px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: #fff;
  background: transparent;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.contact-dialog::backdrop {
  background: rgba(6, 14, 26, 0.74);
  backdrop-filter: blur(10px);
}

.contact-dialog-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(20, 184, 166, 0.22), rgba(17, 29, 48, 0.96) 42%),
    #111d30;
}

.contact-dialog-panel::before {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 360px;
  height: 360px;
  background: url("images/torque-icon.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  color: var(--teal);
  border-color: rgba(20, 184, 166, 0.55);
}

.contact-dialog-copy,
.contact-form,
.form-status {
  position: relative;
  z-index: 1;
}

.contact-dialog-copy h2 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.55rem);
  line-height: 0.96;
}

.contact-dialog-copy p:not(.kicker) {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 15px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  outline: none;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(20, 184, 166, 0.8);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16);
}

.field-error {
  min-height: 1em;
  color: #ffb4b4;
  font-size: 0.82rem;
}

.form-status {
  display: none;
  margin-top: 22px;
  border-radius: 12px;
  padding: 13px 15px;
  font-weight: 750;
}

.form-status.success {
  color: #d7fff8;
  background: rgba(20, 184, 166, 0.16);
}

.form-status.error {
  color: #ffd6d6;
  background: rgba(255, 86, 86, 0.16);
}

@media (max-width: 640px) {
  .contact-dialog {
    width: min(94vw, 620px);
  }

  .dialog-close {
    top: 12px;
    right: 12px;
  }

  .contact-dialog-copy h2 {
    padding-right: 42px;
  }
}

/* Slider responsive refinements */
.module-cards img {
  display: block;
  width: min(420px, 100%);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.slider-viewport {
  touch-action: pan-y;
}

@media (max-width: 860px) {
  .module-slider-arrow {
    display: inline-grid;
    top: 58%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .module-slider-prev {
    left: 10px;
  }

  .module-slider-next {
    right: 10px;
  }

  .module-cards {
    display: grid;
    place-items: center;
    min-height: 220px;
  }

  .module-cards img {
    width: min(420px, calc(100vw - 96px));
  }

  .testimonial-slider {
    padding-inline: 52px;
  }

  .testimonial-slider .slider-arrow {
    top: 50%;
    bottom: auto;
    display: grid;
    transform: translateY(-50%);
  }

  .testimonial-slider .slider-arrow:hover,
  .testimonial-slider .slider-arrow:focus-visible {
    transform: translateY(-50%) scale(1.05);
  }

  .testimonial-slider .slider-prev {
    left: 0;
  }

  .testimonial-slider .slider-next {
    right: 0;
  }

  .testimonials .dots {
    margin-top: 28px;
  }
}

@media (max-width: 460px) {
  .module-slider-arrow {
    display: none;
  }

  .testimonial-slider {
    padding-inline: 0;
  }

  .testimonial-slider .slider-arrow {
    display: none;
  }
}
/* Temporary gate */
html:not(.site-unlocked) body.temp-gate-active {
  min-height: 100vh;
  overflow: hidden;
  background: #111d30;
}

html:not(.site-unlocked) body.temp-gate-active > header,
html:not(.site-unlocked) body.temp-gate-active > main,
html:not(.site-unlocked) body.temp-gate-active > footer,
html:not(.site-unlocked) body.temp-gate-active > .legal,
html:not(.site-unlocked) body.temp-gate-active > .contact-dialog {
  display: none;
}

.temporary-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  min-height: 100vh;
  padding: 32px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.22), rgba(17, 29, 48, 0.96) 48%),
    #111d30;
}

.temporary-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/torque-icon.png") center / min(72vw, 860px) auto no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.temporary-gate img,
.temporary-gate .kicker,
.temporary-gate h1,
.temporary-gate p {
  position: relative;
  z-index: 1;
}

.temporary-gate img {
  width: min(260px, 72vw);
  height: auto;
  margin-bottom: 18px;
}

.temporary-gate h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.25rem, 8vw, 5.4rem);
  font-weight: 560;
  line-height: 0.94;
}

.temporary-gate p:not(.kicker) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.6;
}


.temporary-gate .button {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
html.site-unlocked .temporary-gate,
body:not(.temp-gate-active) .temporary-gate {
  display: none;
}
