:root {
  --bg: #050607;
  --bg-deep: #020304;
  --surface: #0a0b0e;
  --surface-2: #101216;
  --text: #f4f4f1;
  --muted: #a5a6aa;
  --muted-2: #85878c;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);
  --red: #ed2d27;
  --red-bright: #ff443d;
  --green: #25d366;
  --display: "Barlow Condensed", sans-serif;
  --body: "Manrope", sans-serif;
  --wrap: 1480px;
  --header-height: 82px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 15%, rgba(237, 45, 39, 0.06), transparent 24rem),
    var(--bg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

ul {
  padding: 0;
  list-style: none;
}

::selection {
  color: #fff;
  background: var(--red);
}

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 3000;
  padding: 10px 16px;
  color: #fff;
  background: var(--red);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.3em;
  height: 1.3em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.wrap {
  width: min(calc(100% - 64px), var(--wrap));
  margin-inline: auto;
}

.section {
  position: relative;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2500;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red-bright);
  box-shadow: 0 0 16px rgba(255, 68, 61, 0.6);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 1200;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 32px), 1540px);
  min-height: var(--header-height);
  padding: 10px 12px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(6, 7, 9, 0.88);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(120%);
  transform: translateX(-50%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(5, 6, 8, 0.96);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.52);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: #f8f8f7;
}

.brand-mark img {
  width: 50px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.brand-copy span {
  margin-top: 7px;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 54px);
  padding-inline: 24px;
}

.site-nav a {
  position: relative;
  padding: 16px 0;
  color: #c1c2c5;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  place-items: center;
  cursor: pointer;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 220ms var(--ease-out), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.18) 48%, transparent 68%);
  transform: translateX(-125%);
  transition: transform 600ms var(--ease-out);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover::before {
  transform: translateX(125%);
}

.button-arrow {
  margin-left: 8px;
  transition: transform 220ms var(--ease-out);
}

.button:hover .button-arrow {
  transform: translateX(4px);
}

.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(237, 45, 39, 0.2);
}

.button-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 18px 42px rgba(237, 45, 39, 0.32);
}

.button-secondary {
  color: #fff;
  border-color: var(--line-strong);
  background: rgba(7, 8, 10, 0.68);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(18, 19, 22, 0.9);
}

.button-whatsapp {
  color: #05140a;
  background: var(--green);
  box-shadow: 0 14px 42px rgba(37, 211, 102, 0.16);
}

.button-whatsapp:hover {
  background: #35e575;
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.28);
}

.header-cta {
  min-height: 58px;
  padding-inline: 22px;
  border-radius: 10px;
  white-space: nowrap;
}

.technical-grid {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: 60%;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.6) 58%, transparent 100%);
  pointer-events: none;
}

.hero {
  display: grid;
  min-height: max(760px, 100svh);
  align-items: center;
  overflow: hidden;
  padding: 138px 0 78px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  mask-image: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.58) 0%, rgba(2, 3, 4, 0.3) 38%, rgba(2, 3, 4, 0.14) 64%, rgba(2, 3, 4, 0.42) 100%),
    linear-gradient(0deg, rgba(2, 3, 4, 0.44) 0%, transparent 42%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transform: translate3d(var(--media-x, 0), var(--media-y, 0), 0) scale(1.02);
  transition: transform 500ms var(--ease-out);
}

.hero-streak,
.conversion-streak,
.brand-streak {
  position: absolute;
  z-index: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--red-bright), transparent);
  box-shadow: 0 0 16px rgba(255, 68, 61, 0.55);
  transform: rotate(-4deg);
  pointer-events: none;
}

.hero-streak {
  right: -8%;
  bottom: 7%;
  width: 66%;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(285px, 0.72fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

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

.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  color: #d6d7d9;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker > span {
  width: 34px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--red);
  box-shadow: 12px 0 18px rgba(237, 45, 39, 0.6);
}

.hero h1 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(4.4rem, 7.15vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.8;
  text-transform: uppercase;
}

.hero h1 > span {
  display: block;
}

.hero h1 em,
.section-heading em,
.brands-copy em,
.conversion-copy em {
  color: var(--red);
  font-style: normal;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 26px;
  color: #c1c2c5;
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.proof-list {
  display: flex;
  max-width: 720px;
  align-items: stretch;
  margin-bottom: 0;
}

.proof-list li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
  color: #d4d4d6;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.proof-list li:first-child {
  padding-left: 0;
}

.proof-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-list .icon {
  width: 27px;
  height: 27px;
  color: var(--red-bright);
}

.hero-rail {
  position: relative;
  align-self: stretch;
  padding: clamp(150px, 19vh, 210px) 0 30px 34px;
  border-left: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(5, 6, 7, 0.76), rgba(5, 6, 7, 0.28));
}

.orbit {
  position: absolute;
  top: 28px;
  left: 34px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.orbit::before,
.orbit::after,
.orbit span {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.orbit::before {
  inset: 15px;
}

.orbit::after {
  inset: 35px;
}

.orbit span {
  inset: -1px;
  border-color: transparent transparent var(--red-bright) var(--red-bright);
  animation: orbit-spin 10s linear infinite;
}

.orbit i {
  position: absolute;
  top: 50%;
  left: -18px;
  width: 154px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.rail-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #8f9095;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rail-label::after {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--red);
}

.hero-rail h2 {
  max-width: 350px;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-rail > p:not(.rail-label) {
  max-width: 340px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.rail-service {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.rail-service span,
.rail-service strong {
  display: block;
}

.rail-service span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.rail-service strong {
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: 34px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(90deg) translateY(-100%);
  transform-origin: right bottom;
}

.scroll-cue i {
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: var(--line-strong);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: var(--red);
  animation: cue 2.2s var(--ease-out) infinite;
}

@keyframes cue {
  from { transform: translateX(-110%); }
  to { transform: translateX(230%); }
}

.advantages {
  overflow: hidden;
  padding: 138px 0 48px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 52px 52px;
}

.advantages-part {
  position: absolute;
  top: -120px;
  right: -8%;
  width: 44%;
  height: 470px;
  opacity: 0.48;
  mask-image: linear-gradient(135deg, transparent 8%, #000 50%, transparent 94%);
  pointer-events: none;
}

.advantages-part img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 50%;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 1050px;
}

.section-heading h2,
.brands-copy h2,
.about h2,
.contact-intro h2,
.conversion-copy h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3.3rem, 5.4vw, 5.6rem);
}

.service-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 42px;
}

.service-rail::before {
  content: "";
  position: absolute;
  top: 60px;
  right: 2%;
  left: 2%;
  z-index: -1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red) 7%, var(--red) 93%, transparent);
  box-shadow: 0 0 12px rgba(237, 45, 39, 0.38);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease-out) 180ms;
}

.service-rail.is-visible::before {
  transform: scaleX(1);
}

.service-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.service-icon,
.audience-icon {
  position: relative;
  display: grid;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  place-items: center;
  background: rgba(7, 8, 10, 0.9);
  transition: color 220ms ease, border-color 220ms ease, transform 300ms var(--ease-out);
}

.service-icon {
  width: 112px;
  height: 112px;
}

.service-icon::before,
.audience-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.service-icon::after,
.audience-icon::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 9px;
  height: 9px;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 12px var(--red-bright);
}

.service-icon .icon {
  width: 42px;
  height: 42px;
  color: var(--red-bright);
}

.service-item:hover .service-icon,
.audience-rail article:hover .audience-icon {
  color: var(--red-bright);
  border-color: var(--red);
  transform: rotate(-4deg) scale(1.04);
}

.service-copy {
  position: relative;
  padding-top: 3px;
}

.service-number {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-family: var(--display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.service-copy h3,
.audience-rail h3,
.contact-rail h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.service-copy h3 {
  margin-bottom: 14px;
  font-size: 28px;
}

.service-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.brands-band {
  overflow: hidden;
  padding: 102px 0 0;
  border-block: 1px solid var(--line);
  background:
    repeating-linear-gradient(128deg, transparent 0 16px, rgba(255, 255, 255, 0.018) 16px 17px),
    #08090b;
}

.brand-streak {
  right: -12%;
  bottom: 26%;
  width: 72%;
  transform: rotate(-8deg);
}

.brands-layout {
  position: relative;
  z-index: 1;
}

.brands-copy {
  max-width: 1050px;
}

.brands-copy h2 {
  margin-bottom: 64px;
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.88);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee:hover .marquee-track,
.marquee.is-paused .marquee-track {
  animation-play-state: paused;
}

.marquee-toggle {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(5, 6, 8, 0.94);
  color: var(--text);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.08em;
  transform: translateY(-50%);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.marquee-toggle:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.marquee-group {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 34px;
  padding: 25px 34px;
}

.marquee-group span {
  color: #d4d5d7;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-group i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--red-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 68, 61, 0.5);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.about {
  padding: 138px 0 28px;
  background: var(--bg-deep);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  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: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent, #000 35%, transparent);
  pointer-events: none;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.97fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: start;
}

.about h2 {
  margin-bottom: 42px;
  font-size: clamp(3.5rem, 4.6vw, 5.2rem);
  white-space: nowrap;
}

.story-rail {
  position: relative;
}

.story-rail::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 24px;
  width: 1px;
  background: linear-gradient(var(--red), rgba(237, 45, 39, 0.14));
}

.story-step {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  margin-bottom: 30px;
}

.story-step:last-child {
  margin-bottom: 0;
}

.story-step > span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--red);
  background: var(--bg-deep);
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.story-step > span::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 20px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: var(--bg-deep);
  transform: translateX(-50%);
}

.story-step p {
  margin-bottom: 0;
  color: #b9babd;
  font-size: 15px;
  line-height: 1.85;
}

.about-visual {
  position: relative;
}

.brand-image {
  position: relative;
  aspect-ratio: 16 / 10.4;
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid rgba(237, 45, 39, 0.62);
  background: #000;
  clip-path: polygon(0 0, 82% 0, 86% 7%, 96% 7%, 100% 15%, 100% 100%, 11% 100%, 7% 94%, 0 94%);
}

.brand-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  clip-path: inherit;
  pointer-events: none;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--ease-out);
}

.about-visual:hover .brand-image img {
  transform: scale(1.035);
}

.location-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 26px;
  border-left: 1px solid var(--red);
  background: rgba(15, 16, 19, 0.86);
}

.location-panel > .icon {
  width: 35px;
  height: 35px;
  color: var(--red-bright);
}

.location-panel span,
.location-panel strong {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
}

.location-panel span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.07em;
}

.location-panel strong {
  margin-bottom: 7px;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.05;
}

.location-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.about-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(390px, 1fr);
  margin-top: 46px;
  border-block: 1px solid var(--line);
}

.audience-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-rail article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 150px;
  padding: 24px 34px;
  border-right: 1px solid var(--line);
}

.audience-rail article:last-child {
  border-right: 0;
}

.audience-icon {
  width: 70px;
  height: 70px;
}

.audience-icon .icon {
  width: 31px;
  height: 31px;
}

.audience-rail h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 26px;
}

.audience-rail h3::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0.38);
  transform-origin: left;
  transition: transform 300ms var(--ease-out);
}

.audience-rail article:hover h3::after {
  transform: scaleX(1);
}

.audience-rail p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.conversion {
  display: grid;
  min-height: 420px;
  align-items: center;
  overflow: hidden;
  padding: 88px 0;
  border-block: 1px solid var(--line);
  background: var(--bg);
  isolation: isolate;
}

.conversion-media {
  position: absolute;
  inset: 0 0 0 44%;
  z-index: -1;
  opacity: 0.82;
  mask-image: linear-gradient(to right, transparent, #000 42%);
}

.conversion-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.conversion-streak {
  left: -8%;
  bottom: 19%;
  width: 58%;
  transform: rotate(7deg);
}

.conversion-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
}

.conversion-copy {
  max-width: 920px;
}

.conversion-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(3.5rem, 6vw, 6.6rem);
}

.conversion-copy > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: #b9babd;
}

.conversion-button {
  min-height: 72px;
  padding-inline: 30px;
  font-size: 22px;
}

.site-footer {
  padding: 130px 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg-deep);
  background-size: 54px 54px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(560px, 1.32fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
}

.contact-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(3.5rem, 3.8vw, 4rem);
}

.contact-intro > p:last-child {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
}

.map-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 5.6;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(237, 45, 39, 0.78);
  background: var(--surface);
  clip-path: polygon(0 7%, 5% 0, 93% 0, 100% 16%, 100% 93%, 96% 100%, 6% 100%, 0 88%);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 300ms var(--ease-out);
}

.map-frame:hover,
.map-frame:focus-within {
  border-color: var(--red-bright);
  box-shadow: 0 0 32px rgba(237, 45, 39, 0.14);
  transform: translateY(-3px);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82) contrast(1.04);
}

.contact-rail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 1.1fr;
  margin-top: 62px;
  border-block: 1px solid var(--line);
}

.contact-rail section {
  min-width: 0;
  padding: 34px 38px;
  border-right: 1px solid var(--line);
}

.contact-rail section:first-child {
  padding-left: 0;
}

.contact-rail section:last-child {
  padding-right: 0;
  border-right: 0;
}

.contact-rail h3 {
  display: inline-block;
  margin-bottom: 23px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  font-size: 28px;
}

.contact-rail ul {
  margin-bottom: 0;
}

.contact-rail li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 13px;
  color: #b4b5b8;
  font-size: 14px;
}

.contact-rail li:last-child {
  margin-bottom: 0;
}

.contact-rail .icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--red-bright);
}

.contact-rail a {
  transition: color 180ms ease;
}

.contact-rail a:hover {
  color: #fff;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  min-height: 130px;
  margin-top: 70px;
  border-top: 1px solid var(--red);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 60px;
  height: 46px;
  object-fit: contain;
  border-radius: 5px;
  background: #fff;
}

.footer-brand b {
  display: block;
  color: var(--red-bright);
  font-weight: 700;
  line-height: 1;
}

.footer-bottom p {
  margin-bottom: 0;
  color: var(--muted-2);
  font-size: 12px;
  text-align: center;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.back-to-top .icon {
  width: 40px;
  height: 40px;
  padding: 9px;
  color: var(--red-bright);
  border: 1px solid var(--line-strong);
  transition: transform 220ms var(--ease-out), border-color 220ms ease;
}

.back-to-top:hover .icon {
  border-color: var(--red);
  transform: translateY(-4px);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js.reveal-fallback .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1260px) {
  .site-nav {
    gap: 26px;
  }

  .header-cta {
    padding-inline: 18px;
    font-size: 17px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.75fr) minmax(270px, 0.72fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.1vw, 6.6rem);
  }

  .service-item {
    grid-template-columns: 92px 1fr;
  }

  .service-icon {
    width: 92px;
    height: 92px;
  }

  .service-rail::before {
    top: 49px;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.88fr);
    gap: 58px;
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 72px;
  }

  .wrap {
    width: min(calc(100% - 44px), var(--wrap));
  }

  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    order: 2;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    overflow: hidden;
    padding: 8px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(5, 6, 8, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 220ms var(--ease-out), visibility 0s linear 220ms;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    bottom: -1px;
  }

  .header-cta {
    order: 3;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    object-position: 38% center;
  }

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

  .hero-rail {
    max-width: 700px;
    min-height: 310px;
    padding: 44px 30px 30px 190px;
    border-top: 1px solid var(--line);
    border-left: 0;
    background: rgba(5, 6, 7, 0.82);
  }

  .orbit {
    top: 52px;
    left: 34px;
  }

  .advantages-part {
    width: 60%;
    opacity: 0.34;
  }

  .service-rail {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-rail::before {
    top: 30px;
    right: auto;
    bottom: 30px;
    left: 45px;
    width: 2px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }

  .service-rail.is-visible::before {
    transform: scaleY(1);
  }

  .service-item {
    grid-template-columns: 92px 1fr;
    max-width: 760px;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .contact-intro {
    max-width: 760px;
  }

  .about-visual {
    max-width: 820px;
  }

  .audience-rail {
    grid-template-columns: 1fr;
  }

  .about-bottom {
    grid-template-columns: 1fr;
  }

  .about-bottom .location-panel {
    border-top: 1px solid var(--red);
    border-left: 0;
  }

  .audience-rail article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience-rail article:last-child {
    border-bottom: 0;
  }

  .conversion-layout {
    grid-template-columns: 1fr;
  }

  .conversion-button {
    justify-self: start;
  }

  .map-frame {
    max-width: 100%;
  }

  .contact-rail {
    grid-template-columns: 1fr 1fr;
  }

  .contact-rail section:first-child {
    padding-left: 38px;
  }

  .contact-rail section:nth-child(2) {
    border-right: 0;
  }

  .contact-rail section:last-child {
    grid-column: 1 / -1;
    padding-left: 38px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 64px;
  }

  html {
    scroll-padding-top: 0;
  }

  body {
    font-size: 15px;
  }

  .wrap {
    width: min(calc(100% - 30px), var(--wrap));
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 7px 8px 7px 10px;
    border-radius: 13px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 8px;
  }

  .brand-mark img {
    width: 40px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .brand-copy span {
    margin-top: 5px;
    font-size: 14px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .header-cta {
    width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .header-cta span {
    display: none;
  }

  .header-cta .icon {
    width: 22px;
    height: 22px;
  }

  .hero {
    padding: 118px 0 70px;
  }

  .hero-media {
    inset: 0;
    opacity: 1;
    mask-image: none;
  }

  .hero-media img {
    object-position: 31% center;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(2, 3, 4, 0.68) 0%, rgba(2, 3, 4, 0.36) 58%, rgba(2, 3, 4, 0.28) 100%),
      linear-gradient(0deg, rgba(2, 3, 4, 0.55) 0%, transparent 44%, rgba(2, 3, 4, 0.4) 100%);
  }

  .technical-grid {
    width: 100%;
    opacity: 0.16;
  }

  .kicker {
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
  }

  .kicker > span {
    width: 24px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.8rem, 18vw, 5.2rem);
    line-height: 0.82;
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-list {
    display: grid;
    gap: 14px;
  }

  .proof-list li,
  .proof-list li:first-child,
  .proof-list li:last-child {
    padding: 0;
    border-right: 0;
  }

  .hero-rail {
    min-height: 0;
    padding: 150px 20px 28px;
  }

  .orbit {
    top: 22px;
    left: 20px;
    width: 100px;
    height: 100px;
  }

  .hero-rail h2 {
    font-size: 2.25rem;
  }

  .scroll-cue {
    display: none;
  }

  .advantages,
  .about {
    padding: 96px 0 90px;
  }

  .advantages-part {
    top: -50px;
    right: -45%;
    width: 100%;
    height: 340px;
  }

  .section-heading h2,
  .brands-copy h2,
  .about h2,
  .contact-intro h2,
  .conversion-copy h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .about h2 {
    white-space: normal;
  }

  .service-rail {
    margin-top: 54px;
  }

  .service-item {
    grid-template-columns: 74px 1fr;
    gap: 15px;
  }

  .service-icon {
    width: 74px;
    height: 74px;
  }

  .service-icon .icon {
    width: 31px;
    height: 31px;
  }

  .service-rail::before {
    left: 36px;
  }

  .service-number {
    font-size: 34px;
  }

  .service-copy h3 {
    font-size: 24px;
  }

  .brands-band {
    padding-top: 86px;
  }

  .brands-copy h2 {
    margin-bottom: 44px;
  }

  .marquee-group {
    gap: 22px;
    padding: 20px 22px;
  }

  .marquee-group span {
    font-size: 19px;
  }

  .about-layout {
    gap: 48px;
  }

  .about h2 {
    margin-bottom: 30px;
  }

  .story-step {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .story-step > span {
    font-size: 32px;
  }

  .story-step p {
    font-size: 14px;
    line-height: 1.7;
  }

  .story-rail::before {
    left: 18px;
  }

  .story-step > span::before {
    left: 14px;
    top: 9px;
  }

  .brand-image {
    aspect-ratio: 4 / 3;
  }

  .location-panel {
    padding: 21px 18px;
  }

  .about-bottom {
    margin-top: 42px;
  }

  .audience-rail article {
    grid-template-columns: 64px 1fr;
    min-height: 126px;
    padding: 22px 12px;
  }

  .audience-icon {
    width: 58px;
    height: 58px;
  }

  .audience-icon .icon {
    width: 26px;
    height: 26px;
  }

  .conversion {
    min-height: 0;
    padding: 82px 0;
  }

  .conversion-media {
    left: 25%;
    opacity: 0.52;
  }

  .conversion-layout {
    gap: 34px;
  }

  .conversion-button {
    width: 100%;
    min-height: 64px;
    padding-inline: 18px;
    font-size: 19px;
  }

  .site-footer {
    padding-top: 94px;
  }

  .contact-layout {
    gap: 40px;
  }

  .map-frame {
    aspect-ratio: 4 / 3;
    clip-path: polygon(0 5%, 6% 0, 94% 0, 100% 10%, 100% 95%, 94% 100%, 6% 100%, 0 92%);
  }

  .contact-rail {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .contact-rail section,
  .contact-rail section:first-child,
  .contact-rail section:last-child {
    grid-column: auto;
    padding: 28px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-rail section:last-child {
    border-bottom: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    padding: 34px 0;
    text-align: center;
  }

  .back-to-top {
    order: -1;
  }
}

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

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

  .hero-media img {
    transform: scale(1.02);
  }

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