/* Squadra Brasil — Squadra Tec / Perfect Store */

.page-squadra-tec { background: var(--ink); }

.tec-opening {
  --tec-hero-height: clamp(330px, 23.18vw, 445px);
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.tec-opening__orb {
  position: absolute;
  z-index: 1;
  top: max(-110px, -5.73vw);
  left: 50%;
  display: block;
  width: min(89.43vw, 1717px);
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
  translate: -50% 0;
  transform-origin: center;
  animation: tec-orb-spin 180s linear infinite;
}

.tec-hero {
  position: relative;
  z-index: 2;
  min-height: var(--tec-hero-height);
  overflow: hidden;
  background: transparent;
}

.tec-hero h1 {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(1200px, calc(100% - 48px));
  margin: 0;
  color: var(--pink);
  font-family: var(--font-display);
  font-size: clamp(5.4rem, 8vw, 9.5rem);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: .8;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  animation: tec-title-in 900ms 100ms cubic-bezier(.2, .75, .25, 1) both;
}

.tec-hero__arrows {
  position: absolute;
  z-index: 5;
  top: calc(50% - clamp(92px, 5.7vw, 110px));
  left: calc(50% - min(165px, 18vw));
  width: clamp(92px, 8.45vw, 162px);
  animation: hero-float-x 5.1s ease-in-out infinite;
}

.tec-hero__arrows .decor-loader__track i { background: #a600f4; }

.tec-hero__dots {
  position: absolute;
  z-index: 5;
  top: calc(50% + clamp(73px, 5.4vw, 104px));
  left: calc(50% - 30px);
  display: flex;
  gap: 9px;
  animation: hero-float-x-reverse 5.8s ease-in-out infinite;
}

.tec-hero__dots i {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  animation: hero-dot-pulse 1.8s ease-in-out infinite;
}

.tec-hero__dots i:nth-child(2) { animation-delay: 120ms; }
.tec-hero__dots i:nth-child(3) { animation-delay: 240ms; }
.tec-hero__dots i:nth-child(4) { animation-delay: 360ms; }

.tec-banner {
  position: relative;
  z-index: 5;
  height: clamp(220px, 20.9vw, 401px);
  overflow: hidden;
  background: #111;
}

.tec-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .32), transparent 42%, rgba(0, 0, 0, .14));
  pointer-events: none;
}

.tec-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.tec-overview {
  position: relative;
  z-index: 2;
  min-height: clamp(430px, 27vw, 520px);
  padding: clamp(142px, 8.8vw, 170px) 24px 84px;
  overflow: hidden;
  background: rgba(19, 15, 29, .2);
}

.tec-overview__rings {
  position: absolute;
  z-index: 4;
  top: 62px;
  left: 50%;
  width: clamp(150px, 10.8vw, 208px);
  max-width: none;
  pointer-events: none;
  transform-origin: center;
  translate: -50% 0;
  animation: tec-rings-float 6.4s ease-in-out infinite alternate;
}

.tec-overview__rings > i { border-color: rgba(226, 98, 160, .78); }

.tec-overview__grid {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(1040px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(46px, 6vw, 115px);
  margin-inline: auto;
}

.tec-solution {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, max-content) auto;
  gap: 14px clamp(14px, 1.7vw, 26px);
  align-items: center;
  justify-content: start;
  padding: 6px 0 15px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--media-hover-duration) ease, transform var(--media-hover-duration) var(--media-hover-ease);
}

.tec-solution:focus-visible { border-color: currentColor; outline: 3px solid var(--cyan); outline-offset: 8px; }

@media (hover: hover) and (pointer: fine) {
  .tec-solution:hover { border-color: currentColor; transform: translateY(-2px); }
}

.tec-solution strong {
  grid-row: 1;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 4.25vw, 5.1rem);
  font-weight: 600;
  line-height: .82;
  white-space: nowrap;
  text-transform: uppercase;
}

.tec-solution > span {
  grid-row: 2;
  font-size: clamp(.82rem, 1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.tec-solution--audit { color: var(--pink); }
.tec-solution--jbp { color: var(--cyan); }
.tec-solution > span { color: var(--white); }

.tec-solution--audit,
.tec-solution--jbp { grid-template-columns: auto minmax(0, max-content); }
.tec-solution--audit .tec-solution__mark,
.tec-solution--jbp .tec-solution__mark { grid-column: 1; }
.tec-solution--audit strong,
.tec-solution--audit > span,
.tec-solution--jbp strong,
.tec-solution--jbp > span { grid-column: 2; }

.tec-solution__mark {
  grid-row: 1;
  align-self: center;
  justify-self: start;
  width: 58px;
  min-width: 58px;
  height: 64px;
  object-fit: contain;
}

.tec-solution__mark--jbp { width: 64px; min-width: 64px; height: 64px; }

.tec-overview__dot-grid {
  position: absolute;
  z-index: 5;
  bottom: 46px;
  left: 19.5vw;
  width: 54px;
  animation: tec-decor-float 6.2s ease-in-out infinite alternate;
}

.tec-shelf,
.tec-jbp,
.tec-demo {
  position: relative;
  overflow: hidden;
}

.tec-shelf {
  z-index: 2;
  min-height: 1860px;
  padding: clamp(120px, 8vw, 154px) 24px clamp(120px, 7.4vw, 142px);
  color: var(--white);
  background-color: #df5d9f;
  background-image: url("../images/events/events-halftone.svg");
  background-position: center top;
  background-repeat: repeat;
  background-size: 100% auto;
}

.tec-section-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.tec-product-heading {
  display: grid;
  grid-template-columns: auto max-content;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: left;
}

.tec-product-mark {
  flex: 0 0 auto;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 82px;
  height: 92px;
  object-fit: contain;
}

.tec-product-mark--jbp { width: 92px; height: 92px; }

.tec-product-heading > div { display: contents; }
.tec-product-heading h2 { grid-column: 2; grid-row: 1; }
.tec-product-heading p { grid-column: 2; grid-row: 2; }

.tec-product-heading h2,
.tec-jbp__heading h2,
.tec-demo h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: .82;
  text-transform: uppercase;
}

.tec-product-heading h2 { font-size: clamp(5.4rem, 7vw, 8.2rem); }
.tec-product-heading p { margin: 7px 0 0; font-size: clamp(1.05rem, 1.35vw, 1.5rem); font-weight: 600; }

.tec-audit-solution { margin-top: 52px; text-align: center; }
.tec-audit-solution h3,
.tec-benefits > h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.05vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.tec-audit-solution p { margin: 9px 0 30px; font-size: clamp(.96rem, 1.15vw, 1.22rem); font-style: italic; }
.tec-audit-solution > strong {
  display: block;
  width: min(700px, 100%);
  padding: 8px 28px;
  margin-inline: auto;
  color: #14285c;
  background: var(--cyan);
  border-radius: 999px;
  font-size: clamp(.78rem, .92vw, .98rem);
  font-weight: 600;
  text-transform: uppercase;
}

.tec-checklist {
  width: min(860px, 100%);
  padding: 0;
  margin: 48px auto 0;
  list-style: none;
}

.tec-checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  font-size: clamp(1.08rem, 1.5vw, 1.62rem);
  line-height: 1.25;
}

.tec-checklist li > span {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 2px solid #6326f3;
  border-radius: 50%;
}

.tec-checklist li > span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  width: 11px;
  height: 7px;
  border-bottom: 2px solid #6326f3;
  border-left: 2px solid #6326f3;
  transform: rotate(-45deg);
}

.tec-atom {
  position: absolute;
  z-index: 3;
  top: 180px;
  left: calc(50% - 500px);
  width: 96px;
  aspect-ratio: 1;
  animation: tec-atom-drift 7s ease-in-out infinite alternate;
}

.tec-atom i {
  position: absolute;
  top: 28%;
  left: 0;
  width: 100%;
  height: 44%;
  border: 2px solid #f3ca4f;
  border-radius: 50%;
}

.tec-atom i:first-child { rotate: 45deg; }
.tec-atom i:last-child { rotate: -45deg; }

.tec-shelf__dot-grid {
  position: absolute;
  z-index: 3;
  top: 810px;
  right: calc(50% - 520px);
  width: 48px;
  animation: tec-decor-float 6.5s ease-in-out infinite alternate-reverse;
}

.tec-benefits { margin-top: clamp(90px, 7vw, 135px); }
.tec-benefits > h3 { margin-bottom: 50px; text-align: center; }
.tec-benefits__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }

.tec-benefit-card {
  --benefit-accent: var(--pink);
  min-height: 400px;
  padding: 34px 31px 32px;
  background: var(--blue);
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(33, 10, 105, .15);
  transition: transform var(--media-hover-duration) var(--media-hover-ease), box-shadow var(--media-hover-duration) ease;
}

@media (hover: hover) and (pointer: fine) {
  .tec-benefit-card:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(33, 10, 105, .2); }
}
.tec-benefit-card--yellow { --benefit-accent: #f3df08; }
.tec-benefit-card--cyan { --benefit-accent: var(--cyan); }
.tec-benefit-card--yellow header > span { color: var(--blue); }

.tec-benefit-card header { display: flex; align-items: center; gap: 18px; margin-bottom: 38px; }
.tec-benefit-card header > span {
  display: grid;
  flex: 0 0 76px;
  width: 76px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--benefit-accent);
  border-radius: 50%;
  line-height: 1;
}

.tec-symbol {
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.tec-symbol--factory { -webkit-mask-image: url("../images/squadra-tec/factory.svg"); mask-image: url("../images/squadra-tec/factory.svg"); }
.tec-symbol--target { -webkit-mask-image: url("../images/squadra-tec/target.svg"); mask-image: url("../images/squadra-tec/target.svg"); }
.tec-symbol--gear { -webkit-mask-image: url("../images/squadra-tec/gear.svg"); mask-image: url("../images/squadra-tec/gear.svg"); }
.tec-symbol--document { -webkit-mask-image: url("../images/squadra-tec/document.svg"); mask-image: url("../images/squadra-tec/document.svg"); }
.tec-symbol--pin { -webkit-mask-image: url("../images/squadra-tec/pin.svg"); mask-image: url("../images/squadra-tec/pin.svg"); }
.tec-symbol--camera { -webkit-mask-image: url("../images/squadra-tec/camera.svg"); mask-image: url("../images/squadra-tec/camera.svg"); }
.tec-symbol--check { -webkit-mask-image: url("../images/squadra-tec/check.svg"); mask-image: url("../images/squadra-tec/check.svg"); }
.tec-symbol--lightning { -webkit-mask-image: url("../images/squadra-tec/lightning.svg"); mask-image: url("../images/squadra-tec/lightning.svg"); }
.tec-symbol--tag { -webkit-mask-image: url("../images/squadra-tec/tag.svg"); mask-image: url("../images/squadra-tec/tag.svg"); }
.tec-symbol--rocket { -webkit-mask-image: url("../images/squadra-tec/rocket.svg"); mask-image: url("../images/squadra-tec/rocket.svg"); }
.tec-symbol--box { -webkit-mask-image: url("../images/squadra-tec/box.svg"); mask-image: url("../images/squadra-tec/box.svg"); }

.tec-symbol--bars {
  width: 22px;
  height: 18px;
  background:
    linear-gradient(currentColor 0 0) 0 100% / 5px 58% no-repeat,
    linear-gradient(currentColor 0 0) 50% 100% / 5px 100% no-repeat,
    linear-gradient(currentColor 0 0) 100% 100% / 5px 78% no-repeat;
}

.tec-symbol--planogram {
  width: 28px;
  height: 28px;
  background:
    linear-gradient(currentColor 0 0) 0 0 / 42% 42% no-repeat,
    linear-gradient(currentColor 0 0) 100% 0 / 42% 42% no-repeat,
    linear-gradient(currentColor 0 0) 0 100% / 42% 42% no-repeat,
    linear-gradient(currentColor 0 0) 100% 100% / 42% 42% no-repeat;
}

.tec-symbol--extra {
  position: relative;
  width: 32px;
  height: 32px;
  background:
    linear-gradient(currentColor 0 0) center / 2px 13px no-repeat,
    linear-gradient(currentColor 0 0) center / 13px 2px no-repeat;
}

.tec-symbol--extra::before,
.tec-symbol--extra::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.tec-symbol--extra::before { left: 0; }
.tec-symbol--extra::after { right: 0; }

.tec-benefit-card header > span .tec-symbol {
  width: 43px;
  height: 43px;
}

.tec-benefit-card h4 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  font-weight: 600;
  line-height: .9;
  text-transform: uppercase;
}

.tec-benefit-card--yellow h4 { color: #f3df08; }
.tec-benefit-card h4::after { content: ""; display: block; width: 58px; height: 5px; margin-top: 18px; background: var(--benefit-accent); }
.tec-benefit-card ul { display: grid; gap: 20px; padding: 0; margin: 0; list-style: none; }
.tec-benefit-card li { position: relative; padding-left: 21px; font-size: clamp(.78rem, .83vw, .9rem); line-height: 1.35; }
.tec-benefit-card li::before { content: ""; position: absolute; top: .4em; left: 0; width: 9px; aspect-ratio: 1; border-radius: 50%; background: var(--benefit-accent); }

.tec-jbp {
  display: grid;
  min-height: 1510px;
  align-items: center;
  padding: clamp(120px, 7.3vw, 140px) 24px clamp(135px, 8vw, 155px);
  color: var(--white);
  background-color: var(--cyan);
  background-image: url("../images/events/events-halftone.svg");
  background-position: center top;
  background-repeat: repeat;
  background-size: 100% auto;
}

.tec-jbp__heading { text-align: center; }
.tec-jbp__title-row { display: flex; align-items: center; justify-content: center; gap: 28px; }
.tec-jbp__title-row .tec-product-mark { order: -1; }
.tec-jbp__heading h2 { font-size: clamp(5.4rem, 7vw, 8.2rem); }
.tec-jbp__heading p { margin: 14px 0 0; color: var(--blue); font-size: clamp(1rem, 1.35vw, 1.48rem); font-weight: 800; text-transform: uppercase; }

.tec-jbp-flow {
  display: grid;
  width: min(1160px, 100%);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 84px auto 0;
  list-style: none;
}

.tec-jbp-flow__step {
  --flow-bg: var(--blue);
  --flow-color: var(--white);
  position: relative;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  color: var(--flow-color);
  background: var(--flow-bg);
  border-radius: 999px;
  font-size: .88rem;
  text-transform: uppercase;
}

.tec-jbp-flow__step:not(:last-child)::after { content: "›"; position: absolute; right: 10px; font-size: 1.6rem; }
.tec-jbp-flow__step > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  line-height: 1;
}

.tec-jbp-flow__step > span .tec-symbol {
  width: 20px;
  height: 20px;
}
.tec-jbp-flow__step--pink { --flow-bg: var(--pink); }
.tec-jbp-flow__step--yellow { --flow-bg: #f3df08; --flow-color: #171717; }
.tec-jbp-flow__step--purple { --flow-bg: #ad00f8; }

.tec-execution-areas {
  display: grid;
  width: min(1160px, 100%);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin: 68px auto 0;
}

.tec-execution-card {
  --area-accent: var(--pink);
  position: relative;
  display: flex;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 24px;
  background: var(--blue);
  border-radius: 50%;
  text-align: center;
  transition: transform var(--media-hover-duration) var(--media-hover-ease);
}

@media (hover: hover) and (pointer: fine) {
  .tec-execution-card:hover { transform: translateY(-2px); }
}
.tec-execution-card--yellow { --area-accent: #f3df08; }
.tec-execution-card--cyan { --area-accent: var(--cyan); }
.tec-execution-card--purple { --area-accent: #ad00f8; }
.tec-execution-card--yellow .tec-execution-card__icon { color: var(--blue); }

.tec-execution-card__icon {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  width: 86px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--area-accent);
  border-radius: 50%;
  line-height: 1;
  transform: translate(-50%, -14%);
}

.tec-execution-card__icon .tec-symbol {
  width: 44px;
  height: 44px;
}

.tec-execution-card h3 { margin: 0; font-size: clamp(.95rem, 1.15vw, 1.25rem); }
.tec-execution-card p { margin: 15px 0 0; color: rgba(255, 255, 255, .78); font-size: clamp(.72rem, .78vw, .84rem); line-height: 1.45; }

.tec-jbp__quote {
  position: relative;
  width: min(1000px, calc(100% - 50px));
  padding-left: 70px;
  margin: clamp(112px, 7.5vw, 145px) auto 0;
  border: 0;
  font-size: clamp(1.35rem, 1.85vw, 2rem);
  font-weight: 700;
  line-height: 1.55;
}

.tec-jbp__quote::before {
  content: "“";
  position: absolute;
  top: -28px;
  left: 0;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}

.tec-jbp__statement {
  width: max-content;
  max-width: 100%;
  padding: 16px 34px;
  margin: 74px auto 0;
  background: var(--pink);
  border-radius: 999px;
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  font-weight: 700;
  text-align: center;
}

.tec-jbp__dot-grid {
  position: absolute;
  z-index: 3;
  right: calc(50% - 530px);
  bottom: 225px;
  width: 50px;
  animation: tec-decor-float 6s ease-in-out infinite alternate;
}

.tec-demo {
  min-height: 360px;
  padding: 92px 24px 82px;
  color: var(--white);
  background-color: var(--blue);
  background-image: url("../images/events/events-halftone.svg");
  background-position: center top;
  background-repeat: repeat;
  background-size: 100% auto;
  text-align: center;
}

.tec-demo h2 { font-size: clamp(4.2rem, 5.5vw, 6.4rem); }
.tec-demo a {
  display: inline-flex;
  min-width: min(520px, 100%);
  min-height: 68px;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  margin-top: 50px;
  color: var(--blue);
  background: #f3df08;
  border-radius: 8px;
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tec-demo a:hover,
.tec-demo a:focus-visible { color: var(--white); background: var(--pink); transform: translateY(-4px); }
.tec-demo a:focus-visible { outline: 3px solid var(--white); outline-offset: 7px; }

@keyframes tec-title-in {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 26px)); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

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

@keyframes tec-rings-float {
  from { transform: translate3d(-6px, -4px, 0) rotate(-2deg) scale(.985); }
  to { transform: translate3d(7px, 6px, 0) rotate(2deg) scale(1.02); }
}

@keyframes tec-decor-float {
  from { transform: translate3d(-5px, -5px, 0); }
  to { transform: translate3d(8px, 8px, 0); }
}

@keyframes tec-atom-drift {
  from { transform: translate3d(-4px, -5px, 0) rotate(-3deg); }
  to { transform: translate3d(8px, 9px, 0) rotate(5deg); }
}

@media (max-width: 900px) {
  .tec-opening { --tec-hero-height: 360px; }
  .tec-banner { height: min(39vw, 320px); }
  .tec-shelf,
  .tec-jbp,
  .tec-demo {
    background-image: url("../images/events/events-halftone-mobile.svg");
    background-size: 100% auto;
  }
}

@media (max-width: 1050px) {
  .tec-overview__dot-grid { left: 8%; }
  .tec-atom { left: 7%; }
  .tec-shelf__dot-grid,
  .tec-jbp__dot-grid { right: 6%; }
  .tec-benefit-card { padding-inline: 24px; }
  .tec-jbp-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tec-execution-areas { grid-template-columns: repeat(3, minmax(0, 220px)); justify-content: center; row-gap: 54px; }
}

@media (max-width: 760px) {
  .tec-opening__orb { top: 0; width: 900px; }
  .tec-hero h1 { font-size: clamp(3.9rem, 14vw, 6.3rem); }
  .tec-hero__arrows { top: calc(50% - 92px); left: calc(50% - 132px); width: 102px; }
  .tec-hero__dots { top: calc(50% + 76px); left: calc(50% - 28px); }
  .tec-banner { height: min(52vw, 280px); }

  .tec-overview { padding-top: 125px; }
  .tec-overview__rings { top: 45px; width: 132px; }
  .tec-overview__grid { grid-template-columns: 1fr; width: min(100%, 460px); gap: 50px; }
  .tec-solution {
    gap: 12px 14px;
    justify-content: center;
  }
  .tec-solution strong { font-size: clamp(2.85rem, 10vw, 4.4rem); }
  .tec-overview__dot-grid { bottom: 22px; left: 20px; width: 40px; }

  .tec-shelf { min-height: 0; padding: 105px 18px 110px; }
  .tec-product-heading { gap: 14px; }
  .tec-product-heading h2,
  .tec-jbp__heading h2 { font-size: clamp(4.2rem, 15vw, 6.2rem); }
  .tec-product-heading p { font-size: .92rem; }
  .tec-product-mark { width: 60px; height: 68px; }
  .tec-product-mark--jbp { width: 64px; height: 64px; }
  .tec-atom { top: 230px; left: -15px; width: 72px; opacity: .7; }
  .tec-shelf__dot-grid { top: 810px; right: 12px; width: 38px; }
  .tec-audit-solution { margin-top: 42px; }
  .tec-checklist { margin-top: 40px; }
  .tec-checklist li { gap: 12px; min-height: 52px; font-size: 1.02rem; }
  .tec-checklist li > span { flex-basis: 27px; width: 27px; height: 27px; border-width: 2px; }
  .tec-checklist li > span::after { top: 5px; left: 7px; width: 10px; height: 6px; border-width: 0 0 2px 2px; }
  .tec-benefits__grid { grid-template-columns: 1fr; width: min(100%, 430px); margin-inline: auto; }
  .tec-benefit-card { min-height: 0; }

  .tec-jbp { min-height: 0; padding: 105px 18px 110px; }
  .tec-jbp__title-row { gap: 12px; }
  .tec-jbp__heading p { font-size: .85rem; }
  .tec-jbp-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 58px; }
  .tec-jbp-flow__step { min-height: 64px; padding-inline: 12px; font-size: .75rem; }
  .tec-execution-areas { grid-template-columns: repeat(2, minmax(0, 180px)); gap: 48px 14px; }
  .tec-execution-card__icon { width: 66px; }
  .tec-execution-card__icon .tec-symbol { width: 34px; height: 34px; }
  .tec-jbp__quote { width: 100%; padding-left: 48px; margin-top: 94px; font-size: 1.05rem; }
  .tec-jbp__quote br { display: none; }
  .tec-jbp__quote::before { top: -18px; font-size: 5.2rem; }
  .tec-jbp__statement { width: 100%; padding: 14px 18px; margin-top: 54px; font-size: .94rem; }
  .tec-jbp__dot-grid { right: 16px; bottom: 190px; width: 38px; }

  .tec-demo { min-height: 310px; padding: 82px 18px 72px; }
  .tec-demo h2 { font-size: clamp(3.6rem, 14vw, 5.2rem); }
  .tec-demo a { min-width: 0; width: min(100%, 430px); min-height: 62px; margin-top: 38px; font-size: .95rem; }
}

@media (max-width: 520px) {
  .tec-opening__orb { width: 760px; }
  .tec-banner { height: 220px; }
}

@media (max-width: 430px) {
  .tec-product-heading { align-items: center; gap: 12px; }
  .tec-product-heading h2,
  .tec-jbp__heading h2 { font-size: 4.1rem; }
  .tec-product-heading .tec-product-mark { width: 48px; height: 56px; }
  .tec-jbp__title-row .tec-product-mark { width: 52px; height: 52px; }
  .tec-jbp-flow { grid-template-columns: 1fr; width: min(100%, 330px); }
  .tec-execution-areas { grid-template-columns: minmax(0, 220px); }
}

@media (prefers-reduced-motion: reduce) {
  .tec-opening__orb,
  .tec-overview__rings,
  .tec-overview__dot-grid,
  .tec-atom,
  .tec-shelf__dot-grid,
  .tec-jbp__dot-grid,
  .tec-solution,
  .tec-benefit-card,
  .tec-execution-card,
  .tec-demo a { animation: none; transition: none; }

  .tec-solution:hover,
  .tec-benefit-card:hover,
  .tec-execution-card:hover,
  .tec-demo a:hover { transform: none !important; }
}
