@font-face {
  font-family: "Normalidad Wide";
  src: url("../fonts/normalidad-wide-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Normalidad Wide";
  src: url("../fonts/normalidad-wide-medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Normalidad Wide";
  src: url("../fonts/normalidad-wide-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --totachi-red: #c4122f;
  --totachi-red-dark: #970c24;
  --totachi-white: #ffffff;
  --totachi-silver: #939598;
  --totachi-black: #000000;
  --totachi-ink: #111111;
  --totachi-soft: #f3f3f3;
  --totachi-line: rgba(17, 17, 17, 0.14);
  --shell: min(1280px, calc(100vw - 40px));
  --header-height: 82px;
  --section-space: clamp(76px, 9vw, 144px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--totachi-black);
}

body {
  margin: 0;
  color: var(--totachi-ink);
  background: var(--totachi-white);
  font-family: "Normalidad Wide", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.search-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--totachi-white);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--totachi-red);
}

::selection {
  color: var(--totachi-white);
  background: var(--totachi-red);
}

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

h1,
h2,
h3,
h4 {
  margin-bottom: 0;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.25rem, 7vw, 7.6rem);
}

h2 {
  font-size: clamp(2.45rem, 4.6vw, 5.3rem);
}

h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.8rem);
}

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

.skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--totachi-black);
  background: var(--totachi-white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--totachi-red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 3px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--totachi-white);
}

.section {
  position: relative;
  padding-block: var(--section-space);
  overflow: clip;
}

.section--white {
  background: var(--totachi-white);
}

.section--soft {
  background: var(--totachi-soft);
}

.section--black {
  color: var(--totachi-white);
  background: var(--totachi-black);
}

.section--red {
  color: var(--totachi-white);
  background: var(--totachi-red);
}

.section-heading {
  max-width: 940px;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.section-heading h2 {
  max-width: 920px;
}

.section-heading > p:not(.eyebrow),
.section-heading--split > p {
  margin-bottom: 0;
  color: #4a4a4a;
  font-size: clamp(1rem, 1.3vw, 1.17rem);
  line-height: 1.75;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(32px, 6vw, 96px);
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.82);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 22px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 250ms var(--ease), background 250ms var(--ease), border-color 250ms var(--ease), transform 250ms var(--ease);
}

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

.button--white {
  color: var(--totachi-red);
  background: var(--totachi-white);
}

.button--white:hover {
  color: var(--totachi-white);
  background: var(--totachi-black);
}

.button--outline-light {
  color: var(--totachi-white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.18);
}

.button--outline-light:hover {
  border-color: var(--totachi-white);
  background: var(--totachi-white);
  color: var(--totachi-black);
}

.button--red {
  color: var(--totachi-white);
  background: var(--totachi-red);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: var(--totachi-white);
  background: var(--totachi-red);
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.site-header__inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}

.brandmark {
  display: block;
  width: clamp(190px, 15vw, 264px);
}

.brandmark img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding-block: 28px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--totachi-white);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.language-switch__link {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.language-switch__link:hover,
.language-switch__link.is-active {
  color: var(--totachi-white);
  border-color: rgba(255, 255, 255, 0.68);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 11px 15px;
  color: var(--totachi-red);
  background: var(--totachi-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease;
}

.header-cta:hover {
  color: var(--totachi-white);
  background: var(--totachi-black);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--totachi-white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.menu-toggle__icon {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
  margin: auto;
}

.menu-toggle__icon i {
  position: absolute;
  left: 0;
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 200ms ease, top 200ms ease;
}

.menu-toggle__icon i:first-child {
  top: 3px;
}

.menu-toggle__icon i:last-child {
  top: 11px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
  top: 7px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
  top: 7px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  color: var(--totachi-white);
  background: var(--totachi-black);
}

.mobile-nav__inner {
  display: grid;
  padding-block: 28px 60px;
}

.mobile-nav a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: clamp(1.3rem, 6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
}

.mobile-nav a::after {
  color: var(--totachi-red);
  content: "↗";
}

.mobile-nav .mobile-nav__cta {
  margin-top: 26px;
  padding-inline: 18px;
  color: var(--totachi-red);
  border: 0;
  background: var(--totachi-white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  align-items: end;
  padding-top: var(--header-height);
  overflow: clip;
  color: var(--totachi-white);
  background: var(--totachi-red);
}

.hero__media,
.hero__overlay,
.hero__lines {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(196, 18, 47, 0.98) 0%, rgba(196, 18, 47, 0.91) 32%, rgba(196, 18, 47, 0.56) 58%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 50%);
}

.hero__lines {
  opacity: 0.75;
  pointer-events: none;
}

.hero__lines i {
  position: absolute;
  top: -20%;
  right: 13%;
  width: 4px;
  height: 145%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(31deg);
}

.hero__lines i:nth-child(2) {
  right: 19%;
  width: 34px;
  background: rgba(0, 0, 0, 0.13);
}

.hero__lines i:nth-child(3) {
  right: 22.5%;
  width: 2px;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(max(760px, 100svh) - var(--header-height));
  grid-template-rows: 1fr auto;
  align-items: center;
  padding-block: clamp(78px, 10vh, 128px) 38px;
}

.hero__copy {
  max-width: 880px;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 30px;
  text-wrap: balance;
}

.hero__lead {
  max-width: 710px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  line-height: 1.68;
}

.hero__signal {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__signal-mark {
  width: 12px;
  height: 12px;
  border: 3px solid var(--totachi-white);
  border-radius: 50%;
}

.product-grid {
  display: grid;
  border-top: 1px solid var(--totachi-line);
  border-left: 1px solid var(--totachi-line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--totachi-line);
  border-bottom: 1px solid var(--totachi-line);
  background: var(--totachi-white);
  overflow: hidden;
  transition: color 280ms var(--ease), background 280ms var(--ease);
}

.product-card:first-child {
  grid-column: span 2;
}

.product-card::before {
  position: absolute;
  z-index: 0;
  top: -55%;
  right: -20%;
  width: 75%;
  height: 190%;
  background: var(--totachi-red);
  content: "";
  transform: translateX(110%) rotate(20deg);
  transition: transform 380ms var(--ease);
}

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

.product-card:hover,
.product-card:focus-within {
  color: var(--totachi-white);
  background: var(--totachi-black);
}

.product-card:hover::before,
.product-card:focus-within::before {
  transform: translateX(0) rotate(20deg);
}

.product-card__number {
  color: var(--totachi-red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.product-card:hover .product-card__number {
  color: var(--totachi-white);
}

.product-card h3 {
  max-width: 300px;
  letter-spacing: -0.03em;
}

.product-card__arrow {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--totachi-silver);
  font-size: 1.4rem;
}

.solution::after {
  position: absolute;
  top: 0;
  right: -6vw;
  width: 25vw;
  height: 100%;
  background: linear-gradient(115deg, transparent 0 44%, rgba(196, 18, 47, 0.34) 44% 57%, transparent 57%);
  content: "";
  pointer-events: none;
}

.solution__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(42px, 8vw, 112px);
}

.solution__image-frame {
  position: relative;
  padding: 18px;
  background: var(--totachi-white);
}

.solution__image-frame::before,
.solution__image-frame::after {
  position: absolute;
  z-index: -1;
  width: 42%;
  height: 9px;
  background: var(--totachi-red);
  content: "";
}

.solution__image-frame::before {
  top: -9px;
  left: 0;
}

.solution__image-frame::after {
  right: 0;
  bottom: -9px;
}

.solution__image-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.solution__content h2 {
  max-width: 760px;
  margin-bottom: 30px;
}

.solution__lead {
  max-width: 720px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

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

.benefit {
  display: grid;
  min-height: 112px;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 14px;
  padding: 22px 18px 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit:nth-child(odd) {
  margin-right: 18px;
}

.benefit span {
  color: var(--totachi-red);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.benefit strong {
  font-size: 0.88rem;
  line-height: 1.4;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.application-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  color: var(--totachi-white);
  background: var(--totachi-black);
}

.application-card--wide {
  min-height: 540px;
  grid-column: 1 / -1;
}

.application-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.1) 62%);
  content: "";
}

.application-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.application-card:hover img {
  filter: saturate(1.12) contrast(1.05);
  transform: scale(1.035);
}

.application-card__label {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  gap: 22px;
  padding: clamp(24px, 3vw, 42px);
}

.application-card__label span {
  color: var(--totachi-red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.application-card__label h3 {
  max-width: 520px;
  font-size: clamp(1.65rem, 3vw, 3.4rem);
}

.technology {
  isolation: isolate;
}

.technology__angles,
.partner__pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.technology__angles i {
  position: absolute;
  top: -50%;
  right: 8%;
  width: 4px;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(28deg);
}

.technology__angles i:nth-child(2) {
  right: 17%;
  width: 70px;
  background: rgba(0, 0, 0, 0.11);
}

.technology__angles i:nth-child(3) {
  right: 24%;
  width: 2px;
}

.technology__content {
  position: relative;
  z-index: 1;
}

.technology-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-left: 1px solid rgba(255, 255, 255, 0.42);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.technology-list span {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: clamp(1rem, 1.8vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-align: center;
  transition: color 220ms ease, background 220ms ease;
}

.technology-list span:hover {
  color: var(--totachi-red);
  background: var(--totachi-white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: end;
  gap: clamp(48px, 9vw, 140px);
}

.about-copy h2 {
  margin-bottom: 32px;
}

.about-copy > p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: #4b4b4b;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.about-metrics {
  border-top: 4px solid var(--totachi-red);
}

.about-metrics > div {
  display: grid;
  min-height: 116px;
  grid-template-columns: minmax(120px, 0.7fr) 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--totachi-line);
}

.about-metrics strong {
  color: var(--totachi-red);
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  line-height: 1;
}

.about-metrics span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.official-news__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.75fr);
  align-items: end;
  gap: clamp(48px, 9vw, 140px);
}

.official-news h2 {
  max-width: 850px;
  margin-bottom: 30px;
}

.official-news p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.official-news__links {
  border-top: 4px solid var(--totachi-red);
}

.official-news__links a {
  display: grid;
  min-height: 108px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 18px;
  padding-inline: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: padding 220ms ease, background 220ms ease;
}

.official-news__links a:hover {
  padding-inline: 18px;
  background: var(--totachi-red);
}

.official-news__links a > span {
  color: var(--totachi-red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.official-news__links a:hover > span {
  color: var(--totachi-white);
}

.official-news__links strong {
  font-size: 0.86rem;
}

.official-news__links i {
  font-size: 1.3rem;
  font-style: normal;
}

.partner {
  position: relative;
  padding-block: clamp(92px, 12vw, 180px);
  overflow: hidden;
  color: var(--totachi-white);
  background: var(--totachi-red);
  isolation: isolate;
}

.partner__pattern {
  background:
    linear-gradient(118deg, transparent 0 56%, rgba(0, 0, 0, 0.14) 56% 63%, transparent 63%),
    linear-gradient(118deg, transparent 0 72%, rgba(255, 255, 255, 0.25) 72% 72.3%, transparent 72.3%);
}

.partner__content {
  position: relative;
  z-index: 1;
  max-width: 1040px;
}

.partner h2 {
  margin-bottom: 32px;
}

.partner p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.site-footer {
  color: var(--totachi-white);
  background: var(--totachi-black);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(170px, 0.5fr));
  gap: clamp(42px, 8vw, 120px);
  padding-block: 78px 62px;
}

.site-footer__brand img {
  width: min(260px, 80%);
  margin-bottom: 28px;
}

.site-footer__brand p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.site-footer__nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer__nav strong {
  margin-bottom: 8px;
  color: var(--totachi-red);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.site-footer__nav a:hover {
  color: var(--totachi-white);
}

.site-footer__bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

.language-switch--footer .language-switch__link {
  color: rgba(255, 255, 255, 0.62);
}

.content-page {
  min-height: 70vh;
  padding-block: calc(var(--header-height) + 88px) 110px;
  background: var(--totachi-white);
}

.content-page__inner {
  max-width: 980px;
}

.content-page h1 {
  max-width: 920px;
  margin-bottom: 42px;
  font-size: clamp(3rem, 6vw, 6.6rem);
}

.entry-content {
  max-width: 780px;
}

.entry-content > * + * {
  margin-top: 1.45em;
}

.entry-content a {
  color: var(--totachi-red);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.entry-hero {
  margin-bottom: 42px;
}

.post-list {
  display: grid;
  gap: 1px;
  margin-top: 48px;
  background: var(--totachi-line);
}

.post-card {
  padding: 34px;
  background: var(--totachi-white);
}

.post-card > span {
  color: var(--totachi-red);
  font-size: 0.7rem;
}

.post-card h2 {
  margin-block: 12px 20px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

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

.reveal[data-reveal-delay="1"] {
  transition-delay: 110ms;
}

.reveal[data-reveal-delay="2"] {
  transition-delay: 220ms;
}

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

@media (max-width: 1180px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 30px, 720px);
    --header-height: 74px;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .section-heading--split,
  .solution__grid,
  .about-grid,
  .official-news__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    align-items: start;
    gap: 28px;
  }

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

  .product-card:first-child {
    grid-column: span 2;
  }

  .solution__visual {
    max-width: 560px;
    margin-inline: auto;
  }

  .application-card--wide {
    min-height: 430px;
  }

  .application-card {
    min-height: 340px;
  }

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

  .official-news__links,
  .about-metrics {
    margin-top: 12px;
  }

  .site-footer__grid {
    gap: 46px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.75rem, 13vw, 4.45rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10.6vw, 3.8rem);
  }

  .site-header__inner {
    gap: 10px;
  }

  .brandmark {
    width: 175px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions > .language-switch {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero__media img {
    object-position: 66% center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(196, 18, 47, 0.98), rgba(196, 18, 47, 0.7)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.44), transparent 58%);
  }

  .hero__content {
    min-height: calc(760px - var(--header-height));
    padding-block: 82px 26px;
  }

  .hero h1 {
    margin-bottom: 24px;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .product-grid,
  .application-grid,
  .benefit-grid,
  .technology-list {
    grid-template-columns: 1fr;
  }

  .product-card:first-child,
  .application-card--wide {
    grid-column: auto;
  }

  .product-card {
    min-height: 190px;
  }

  .benefit:nth-child(odd) {
    margin-right: 0;
  }

  .application-card,
  .application-card--wide {
    min-height: 330px;
  }

  .application-card__label {
    gap: 14px;
  }

  .application-card__label h3 {
    font-size: 1.75rem;
  }

  .technology-list span {
    min-height: 90px;
  }

  .about-metrics > div {
    grid-template-columns: 115px 1fr;
  }

  .official-news__links a {
    grid-template-columns: 34px 1fr auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 22px;
  }
}

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

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

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

/* ========================================================================== 
   TOTACHI EU PRO 0.2.0 — ULTRA PRO VISUAL SYSTEM
   Official 2026 palette, Normalidad Wide and 45-degree cut-corner geometry.
   ========================================================================== */

:root {
  --cut: clamp(16px, 1.55vw, 24px);
  --cut-small: 14px;
  --panel-line: rgba(255, 255, 255, 0.22);
  --panel-glass: rgba(8, 8, 8, 0.48);
  --shadow-premium: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.cut-corner,
.button,
.header-cta,
.mobile-nav__cta {
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%);
}

.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.14);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--totachi-white);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.72);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: color-mix(in srgb, var(--totachi-red) 94%, transparent);
  backdrop-filter: blur(18px) saturate(1.1);
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--totachi-red) 98%, transparent);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.26);
}

.header-cta,
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.header-cta::before,
.button::before {
  position: absolute;
  z-index: -1;
  top: -180%;
  left: -55%;
  width: 38%;
  height: 460%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  content: "";
  opacity: 0;
  transform: rotate(27deg) translateX(-160%);
  transition: transform 650ms var(--ease), opacity 180ms ease;
}

.header-cta:hover::before,
.button:hover::before {
  opacity: 0.6;
  transform: rotate(27deg) translateX(520%);
}

.button {
  min-height: 58px;
  padding-inline: 26px 34px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

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

.button:active,
.header-cta:active {
  transform: translateY(1px) scale(0.99);
}

.button--glass {
  color: var(--totachi-white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 16px 36px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.button--glass:hover {
  color: var(--totachi-black);
  border-color: var(--totachi-white);
  background: var(--totachi-white);
}

.hero--ultra {
  min-height: max(820px, 100svh);
  background: var(--totachi-black);
  isolation: isolate;
}

.hero--ultra .hero__media {
  inset: -6%;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  will-change: transform;
}

.hero--ultra .hero__media img {
  object-position: 64% center;
  filter: saturate(0.92) contrast(1.08);
}

.hero--ultra .hero__overlay {
  background:
    linear-gradient(90deg, rgba(196, 18, 47, 0.99) 0%, rgba(196, 18, 47, 0.95) 27%, rgba(153, 12, 37, 0.72) 49%, rgba(0, 0, 0, 0.2) 73%, rgba(0, 0, 0, 0.54) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68) 0%, transparent 44%);
}

.hero__mesh {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
  pointer-events: none;
}

.hero--ultra .hero__lines {
  z-index: 1;
  opacity: 0.58;
}

.hero--ultra .hero__lines i {
  right: 8%;
  width: 2px;
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(38deg);
}

.hero--ultra .hero__lines i:nth-child(2) {
  right: 15%;
  width: 96px;
  background: rgba(196, 18, 47, 0.3);
}

.hero--ultra .hero__lines i:nth-child(3) {
  right: 22%;
}

.hero--ultra .hero__content {
  z-index: 3;
  min-height: calc(max(820px, 100svh) - var(--header-height));
  padding-block: clamp(72px, 10vh, 118px) 30px;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
}

.hero--ultra .hero__copy {
  max-width: 920px;
}

.hero--ultra h1 {
  max-width: 900px;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.hero--ultra .hero__lead {
  max-width: 720px;
}

.hero__dock {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: end;
  gap: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero--ultra .hero__signal {
  padding-top: 0;
  border-top: 0;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 12px;
}

.hero__metrics > span {
  display: grid;
  min-height: 68px;
  align-content: center;
  padding: 8px 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__metrics strong {
  margin-bottom: 6px;
  color: var(--totachi-white);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero__scroll {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 30px;
  display: grid;
  width: 44px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.hero__scroll span {
  width: 2px;
  height: 24px;
  background: var(--totachi-white);
  transform-origin: top;
  animation: totachi-scroll 1.8s var(--ease) infinite;
}

.category-marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  color: var(--totachi-white);
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--totachi-black);
}

.category-marquee__track {
  display: flex;
  width: max-content;
  animation: totachi-marquee 34s linear infinite;
}

.category-marquee span {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 30px;
  padding-inline: 30px 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-transform: uppercase;
}

.category-marquee i {
  width: 8px;
  height: 8px;
  background: var(--totachi-red);
  transform: rotate(45deg);
}

.products-section {
  isolation: isolate;
}

.products-section__halo {
  position: absolute;
  z-index: -1;
  top: -16vw;
  right: -15vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(196, 18, 47, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7vw rgba(196, 18, 47, 0.025), inset 0 0 0 14vw rgba(196, 18, 47, 0.025);
}

.product-grid--premium {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
  border: 0;
}

.product-grid--premium .product-card {
  min-height: 330px;
  grid-column: span 3;
  padding: clamp(24px, 2.5vw, 36px);
  border: 1px solid var(--totachi-line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.04);
  transition: color 300ms var(--ease), background 300ms var(--ease), box-shadow 300ms var(--ease), transform 220ms var(--ease);
}

.product-grid--premium .product-card:first-child {
  grid-column: span 6;
}

.product-grid--premium .product-card:nth-child(2),
.product-grid--premium .product-card:nth-child(3) {
  grid-column: span 3;
}

.product-grid--premium .product-card::before {
  top: -70%;
  right: -24%;
  width: 78%;
  height: 220%;
  transform: translateX(120%) rotate(22deg);
}

.product-grid--premium .product-card:hover,
.product-grid--premium .product-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.product-card__icon {
  position: absolute;
  top: 28px;
  right: 30px;
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(196, 18, 47, 0.24);
  color: var(--totachi-red);
  background: rgba(196, 18, 47, 0.045);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transition: color 260ms ease, border-color 260ms ease, background 260ms ease;
}

.product-card__icon i {
  position: absolute;
  inset: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.5;
}

.product-card__icon b {
  font-size: 1rem;
  line-height: 1;
}

.product-card:hover .product-card__icon,
.product-card:focus-within .product-card__icon {
  color: var(--totachi-white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.product-card__body {
  align-self: end;
  max-width: 88%;
  transform: translateZ(22px);
}

.product-card__body h3 {
  margin-bottom: 16px;
}

.product-card__body p {
  margin-bottom: 0;
  color: #5c5c5c;
  font-size: 0.84rem;
  line-height: 1.55;
  transition: color 260ms ease;
}

.product-card:hover .product-card__body p,
.product-card:focus-within .product-card__body p {
  color: rgba(255, 255, 255, 0.72);
}

.product-card__edge {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--totachi-red);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 400ms var(--ease);
}

.product-card:hover .product-card__edge,
.product-card:focus-within .product-card__edge {
  transform: scaleX(1);
}

@keyframes totachi-scroll {
  0%, 100% { opacity: 0.3; transform: scaleY(0.28); }
  50% { opacity: 1; transform: scaleY(1); }
}

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

.solution--immersive {
  isolation: isolate;
}

.solution__glow {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -16vw;
  width: 54vw;
  height: 54vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 18, 47, 0.3), rgba(196, 18, 47, 0.08) 34%, transparent 69%);
  transform: translateY(-50%);
  pointer-events: none;
}

.solution--immersive::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 84px 84px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  pointer-events: none;
}

.solution__visual {
  position: relative;
  padding: clamp(24px, 4vw, 58px);
}

.solution--immersive .solution__image-frame {
  position: relative;
  padding: clamp(18px, 2.4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.5), 0 0 70px rgba(196, 18, 47, 0.18);
  overflow: hidden;
}

.solution--immersive .solution__image-frame::before {
  top: 0;
  left: 0;
  width: 38%;
  height: 5px;
}

.solution--immersive .solution__image-frame::after {
  right: 0;
  bottom: 0;
  width: 28%;
  height: 5px;
}

.solution--immersive .solution__image-frame img {
  position: relative;
  z-index: 1;
  transform: translateZ(18px);
}

.solution__scan {
  position: absolute;
  z-index: 2;
  top: -14%;
  right: 0;
  left: 0;
  height: 16%;
  background: linear-gradient(0deg, transparent, rgba(196, 18, 47, 0.24), rgba(255, 255, 255, 0.72), transparent);
  mix-blend-mode: multiply;
  opacity: 0.62;
  animation: totachi-scan 5.8s var(--ease) infinite;
  pointer-events: none;
}

.solution__orbit-label {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 10%;
  display: grid;
  width: 112px;
  height: 112px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: var(--totachi-white);
  background: rgba(196, 18, 47, 0.84);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

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

.solution__orbit-label::before { inset: -10px; }
.solution__orbit-label::after { inset: 10px; }

.solution__orbit-label strong {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  line-height: 1;
}

.solution__orbit-label span {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.solution--immersive .benefit {
  transition: padding 240ms var(--ease), border-color 240ms ease;
}

.solution--immersive .benefit:hover {
  padding-left: 12px;
  border-color: var(--totachi-red);
}

.applications {
  background:
    linear-gradient(135deg, rgba(196, 18, 47, 0.035), transparent 35%),
    var(--totachi-soft);
}

.application-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.13);
  transition: box-shadow 300ms var(--ease), transform 220ms var(--ease);
}

.application-card:hover,
.application-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 38px 88px rgba(0, 0, 0, 0.24);
}

.application-card::after {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.15) 68%),
    linear-gradient(115deg, rgba(196, 18, 47, 0.35), transparent 48%);
}

.application-card__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, transparent 0 76%, rgba(196, 18, 47, 0.7) 76% 100%);
  opacity: 0;
  transition: opacity 360ms var(--ease);
  pointer-events: none;
}

.application-card:hover .application-card__shade,
.application-card:focus-within .application-card__shade {
  opacity: 1;
}

.application-card__label {
  transform: translateZ(26px);
}

.application-card__label i {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 1.1rem;
  font-style: normal;
  transition: color 250ms ease, background 250ms ease, transform 250ms var(--ease);
}

.application-card:hover .application-card__label i {
  color: var(--totachi-red);
  background: var(--totachi-white);
  transform: translate(4px, -4px);
}

.technology--logos {
  isolation: isolate;
}

.technology__pulse {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(70vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 11vw rgba(0, 0, 0, 0.035), inset 0 0 0 22vw rgba(0, 0, 0, 0.035);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.technology-card {
  position: relative;
  display: grid;
  min-height: 270px;
  grid-template-rows: auto 1fr auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--totachi-white);
  background: rgba(0, 0, 0, 0.12);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: color 280ms ease, background 280ms ease, box-shadow 280ms var(--ease), transform 220ms var(--ease);
}

.technology-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--totachi-black);
  content: "";
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 400ms var(--ease);
}

.technology-card:hover,
.technology-card:focus-within {
  transform: translateY(-5px);
  color: var(--totachi-black);
  background: var(--totachi-white);
  box-shadow: 0 34px 75px rgba(0, 0, 0, 0.22);
}

.technology-card:hover::after,
.technology-card:focus-within::after {
  transform: scaleX(1);
}

.technology-card > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.technology-card:hover > span {
  color: var(--totachi-red);
}

.technology-card__logo {
  display: grid;
  align-items: center;
  padding-block: 22px;
  transform: translateZ(22px);
}

.technology-card__logo img {
  width: min(100%, 230px);
  max-height: 92px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
}

.technology-card > strong {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  line-height: 1.3;
}

.brand-stage {
  isolation: isolate;
}

.brand-stage::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 67%, rgba(196, 18, 47, 0.12) 67% 76%, transparent 76%),
    radial-gradient(circle at 12% 15%, rgba(196, 18, 47, 0.16), transparent 28%);
  content: "";
}

.brand-stage__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
  gap: 14px;
}

.brand-stage__side {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
}

.brand-stage__feature {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #161616;
  box-shadow: 0 32px 84px rgba(0, 0, 0, 0.38);
  transition: box-shadow 300ms ease, transform 220ms var(--ease);
}

.brand-stage__feature--square {
  min-height: 390px;
}

.brand-stage__feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.5);
}

.brand-stage__feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 57%);
  content: "";
}

.brand-stage__feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 550ms ease, transform 800ms var(--ease);
}

.brand-stage__feature:hover img {
  filter: saturate(1.12) contrast(1.06);
  transform: scale(1.035);
}

.brand-stage__label {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
  padding: 28px;
  transform: translateZ(24px);
}

.brand-stage__label span {
  color: var(--totachi-red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-stage__label strong {
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-stage__statement {
  display: flex;
  min-height: 168px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  color: var(--totachi-white);
  background: var(--totachi-red);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
}

.brand-stage__statement span {
  max-width: 200px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.brand-stage__statement strong {
  color: rgba(255, 255, 255, 0.24);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.about-section {
  isolation: isolate;
}

.about-section__mark {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -0.03em;
  color: rgba(196, 18, 47, 0.045);
  font-size: min(62vw, 760px);
  font-weight: 700;
  letter-spacing: -0.14em;
  line-height: 0.68;
  transform: translateY(-46%);
  pointer-events: none;
}

.about-metrics > div {
  position: relative;
  padding-inline: 18px;
  overflow: hidden;
  transition: color 260ms ease, background 260ms ease, padding 260ms var(--ease);
}

.about-metrics > div::before {
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  left: 0;
  background: var(--totachi-red);
  content: "";
  transition: right 320ms var(--ease);
}

.about-metrics > div:hover {
  color: var(--totachi-white);
  padding-left: 26px;
}

.about-metrics > div:hover::before { right: 0; }
.about-metrics > div > * { position: relative; z-index: 1; }
.about-metrics > div:hover strong { color: var(--totachi-white); }

.official-news {
  isolation: isolate;
}

.official-news__texture {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0 58%, rgba(196, 18, 47, 0.12) 58% 66%, transparent 66%),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.035) 79px 80px);
  pointer-events: none;
}

.official-news__links {
  display: grid;
  gap: 8px;
  border-top: 0;
}

.official-news__links a {
  min-height: 112px;
  padding-inline: 20px 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  transition: padding 260ms var(--ease), color 260ms ease, background 260ms ease, border-color 260ms ease;
}

.official-news__links a:hover,
.official-news__links a:focus-visible {
  padding-inline: 28px 22px;
  border-color: var(--totachi-red);
  background: var(--totachi-red);
}

.partner--visual {
  min-height: 620px;
  display: grid;
  align-items: center;
  padding-block: clamp(100px, 13vw, 190px);
  background: var(--totachi-black);
}

.partner__media,
.partner__scrim {
  position: absolute;
  inset: -5%;
}

.partner__media {
  z-index: -3;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  will-change: transform;
}

.partner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
}

.partner__scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(196, 18, 47, 0.98) 0%, rgba(196, 18, 47, 0.88) 43%, rgba(0, 0, 0, 0.55) 72%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
}

.partner--visual .partner__content {
  max-width: 900px;
}

.partner--visual h2 {
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.reveal[data-parallax] {
  transform: translate3d(0, calc(28px + var(--parallax-y, 0px)), 0);
}

.reveal.is-visible[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

@keyframes totachi-scan {
  0%, 14% { transform: translateY(-120%); }
  74%, 100% { transform: translateY(760%); }
}

@media (max-width: 1180px) {
  .product-grid--premium .product-card {
    grid-column: span 4;
  }

  .product-grid--premium .product-card:first-child {
    grid-column: span 8;
  }

  .product-grid--premium .product-card:nth-child(2),
  .product-grid--premium .product-card:nth-child(3) {
    grid-column: span 4;
  }

  .brand-stage__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  }
}

@media (max-width: 960px) {
  .hero--ultra .hero__copy {
    max-width: 780px;
  }

  .hero__dock {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero__metrics {
    max-width: 570px;
  }

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

  .product-grid--premium .product-card,
  .product-grid--premium .product-card:nth-child(2),
  .product-grid--premium .product-card:nth-child(3) {
    grid-column: span 1;
  }

  .product-grid--premium .product-card:first-child {
    grid-column: span 2;
  }

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

  .brand-stage__grid {
    grid-template-columns: 1fr;
  }

  .brand-stage__feature {
    min-height: 520px;
  }

  .brand-stage__side {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    grid-template-rows: 1fr;
  }

  .brand-stage__feature--square {
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .hero__scroll {
    display: none;
  }

  .solution__visual {
    width: min(100%, 620px);
    padding: 28px;
  }

  .solution__orbit-label {
    right: 6px;
    width: 92px;
    height: 92px;
  }

  .partner--visual {
    min-height: 560px;
  }
}

@media (max-width: 620px) {
  :root {
    --cut: var(--cut-small);
  }

  .scroll-progress {
    height: 2px;
  }

  .site-header {
    backdrop-filter: blur(12px);
  }

  .hero--ultra {
    min-height: max(760px, 100svh);
  }

  .hero--ultra .hero__content {
    min-height: calc(max(760px, 100svh) - var(--header-height));
    padding-block: 72px 24px;
  }

  .hero--ultra .hero__media {
    inset: -3%;
  }

  .hero--ultra .hero__overlay {
    background:
      linear-gradient(90deg, rgba(196, 18, 47, 0.98), rgba(196, 18, 47, 0.75)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 58%);
  }

  .hero__mesh {
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, #000, transparent 88%);
  }

  .hero__dock {
    padding-top: 20px;
  }

  .hero__signal {
    font-size: 0.63rem;
  }

  .hero__metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .hero__metrics > span {
    min-height: 56px;
    padding-inline: 9px;
    font-size: 0.48rem;
  }

  .hero__metrics strong {
    font-size: 1.06rem;
  }

  .category-marquee span {
    min-height: 48px;
    gap: 22px;
    padding-left: 22px;
    font-size: 0.6rem;
  }

  .product-grid--premium {
    grid-template-columns: 1fr;
  }

  .product-grid--premium .product-card,
  .product-grid--premium .product-card:first-child,
  .product-grid--premium .product-card:nth-child(2),
  .product-grid--premium .product-card:nth-child(3) {
    min-height: 264px;
    grid-column: span 1;
  }

  .product-card__body {
    max-width: 92%;
  }

  .product-card__body p {
    font-size: 0.8rem;
  }

  .solution__visual {
    padding: 14px 0 30px;
  }

  .solution__orbit-label {
    right: -4px;
    bottom: 8px;
    width: 78px;
    height: 78px;
  }

  .solution__orbit-label strong { font-size: 1.2rem; }
  .solution__orbit-label span { font-size: 0.4rem; }

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

  .application-card__label i {
    width: 40px;
    height: 40px;
  }

  .technology-grid {
    grid-template-columns: 1fr;
  }

  .technology-card {
    min-height: 230px;
  }

  .brand-stage__feature,
  .brand-stage__feature--square {
    min-height: 360px;
  }

  .brand-stage__side {
    grid-template-columns: 1fr;
  }

  .brand-stage__statement {
    min-height: 136px;
  }

  .brand-stage__statement strong {
    font-size: 3.2rem;
  }

  .about-section__mark {
    font-size: 110vw;
  }

  .official-news__links a {
    min-height: 100px;
    padding-inline: 16px 24px;
  }

  .partner--visual {
    min-height: 620px;
  }

}

/* 0.6.0 — editorial contrast guardrails for manufacturer-red/black stages. */
.technology-library .section-heading--split > p,
.brand-stage__heading > p {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .category-marquee__track,
  .hero__scroll span,
  .solution__scan {
    animation: none !important;
  }

  .hero--ultra .hero__media,
  .partner__media,
  .reveal[data-parallax],
  .reveal.is-visible[data-parallax] {
    --parallax-y: 0px !important;
    transform: none !important;
  }

  .category-marquee__track {
    flex-wrap: wrap;
    width: auto;
  }
}

/* ========================================================================== 
   TOTACHI EU PRO — MULTI-PAGE PREMIUM EXPERIENCE
   Official manufacturer assets, page system and 45-degree geometry.
   ========================================================================== */

.desktop-nav__item {
  display: flex;
  align-items: center;
}

.desktop-nav__item > a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.desktop-nav__item > a > span {
  font-size: 0.8rem;
  transform: translateY(-1px);
  transition: transform 220ms var(--ease);
}

.desktop-nav__item:hover > a > span,
.desktop-nav__item:focus-within > a > span {
  transform: rotate(180deg) translateY(1px);
}

.desktop-nav a.is-current::after,
.desktop-nav__item > a.is-current::after {
  transform: scaleX(1);
}

.nav-mega {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  visibility: hidden;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--totachi-white);
  background: rgba(0, 0, 0, 0.97);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(-12px);
  transition: visibility 220ms ease, opacity 220ms ease, transform 260ms var(--ease);
  pointer-events: none;
  backdrop-filter: blur(18px);
}

.desktop-nav__item:hover .nav-mega,
.desktop-nav__item:focus-within .nav-mega {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mega a,
.nav-mega a:hover,
.nav-mega a:focus-visible {
  padding: 0;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.nav-mega a::after {
  display: none;
}

.nav-mega__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
}

.nav-mega__lead {
  position: relative;
  display: grid;
  min-height: 210px;
  align-content: space-between;
  padding: 25px !important;
  color: var(--totachi-white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 50%),
    var(--totachi-red);
  overflow: hidden;
}

.nav-mega__lead::before {
  position: absolute;
  right: -44px;
  bottom: -90px;
  color: rgba(255, 255, 255, 0.11);
  content: "T";
  font-size: 240px;
  font-weight: 700;
  line-height: 1;
}

.nav-mega__lead > span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.nav-mega__lead strong {
  position: relative;
  max-width: 270px;
  font-size: 1.25rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.nav-mega__lead i {
  position: absolute;
  right: 24px;
  bottom: 22px;
  font-size: 1.3rem;
  font-style: normal;
}

.nav-mega__categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.nav-mega__categories a {
  display: grid;
  min-height: 104px;
  grid-template-columns: 26px 48px 1fr;
  align-items: center;
  gap: 10px;
  padding: 13px !important;
  color: var(--totachi-white);
  background: #111111;
  transition: color 220ms ease, background 220ms ease;
}

.nav-mega__categories a:hover,
.nav-mega__categories a:focus-visible {
  color: var(--totachi-red);
  background: var(--totachi-white);
}

.nav-mega__categories span {
  color: var(--totachi-red);
  font-size: 0.58rem;
  font-weight: 700;
}

.nav-mega__categories img {
  width: 48px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.22));
}

.nav-mega__categories strong {
  font-size: 0.68rem;
  line-height: 1.22;
  text-transform: uppercase;
}

.mobile-nav__categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-block: 1px 18px;
  background: rgba(255, 255, 255, 0.14);
}

.mobile-nav__categories a {
  display: grid;
  min-height: 58px;
  grid-template-columns: 25px 1fr;
  gap: 8px;
  padding: 10px 12px;
  border: 0;
  color: rgba(255, 255, 255, 0.82);
  background: #121212;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

.mobile-nav__categories a::after {
  display: none;
}

.mobile-nav__categories span {
  color: var(--totachi-red);
  font-size: 0.58rem;
}

.mobile-nav__languages {
  display: flex;
  margin-top: 26px;
}

.mobile-nav__languages .language-switch__link {
  display: inline-flex;
  width: 42px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.7rem;
}

.mobile-nav__languages .language-switch__link::after {
  display: none;
}

.inner-hero {
  position: relative;
  display: grid;
  min-height: clamp(720px, 88svh, 940px);
  align-items: stretch;
  padding-top: var(--header-height);
  overflow: clip;
  color: var(--totachi-white);
  background: var(--totachi-black);
  isolation: isolate;
}

.inner-hero__media,
.inner-hero__scrim,
.inner-hero__mesh {
  position: absolute;
  inset: 0;
}

.inner-hero__media {
  z-index: -4;
  inset: -5%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
}

.inner-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.12);
}

.inner-hero__scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(196, 18, 47, 0.98) 0%, rgba(196, 18, 47, 0.91) 39%, rgba(0, 0, 0, 0.58) 68%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 58%);
}

.inner-hero__mesh {
  z-index: -2;
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 80%);
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.inner-hero__inner {
  display: grid;
  min-height: calc(clamp(720px, 88svh, 940px) - var(--header-height));
  grid-template-rows: auto 1fr;
  padding-block: 28px clamp(60px, 8vh, 94px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--totachi-white);
}

.breadcrumbs span[aria-current="page"] {
  color: var(--totachi-white);
}

.inner-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.62fr);
  align-items: center;
  gap: clamp(52px, 8vw, 128px);
}

.inner-hero__copy {
  max-width: 900px;
}

.inner-hero h1 {
  max-width: 920px;
  margin-bottom: 30px;
  font-size: clamp(3.2rem, 6.6vw, 7rem);
  text-wrap: balance;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.inner-hero__copy > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.72;
}

.inner-hero__visual {
  position: relative;
  width: min(100%, 450px);
  min-height: 500px;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(10, 10, 10, 0.52);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.36);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.inner-hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), transparent 52%);
  content: "";
  pointer-events: none;
}

.inner-hero__visual > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.inner-hero__visual:hover > img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.025);
}

.inner-hero__number,
.inner-hero__visual-label {
  position: absolute;
  z-index: 2;
}

.inner-hero__number {
  top: 25px;
  left: 25px;
  padding: 8px 10px;
  color: var(--totachi-white);
  background: var(--totachi-red);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.inner-hero__visual-label {
  right: 24px;
  bottom: 25px;
  left: 24px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.inner-hero--product .inner-hero__media,
.inner-hero--products .inner-hero__media {
  opacity: 0.34;
}

.inner-hero--product .inner-hero__scrim,
.inner-hero--products .inner-hero__scrim {
  background:
    linear-gradient(90deg, rgba(196, 18, 47, 0.99) 0%, rgba(196, 18, 47, 0.94) 44%, rgba(0, 0, 0, 0.76) 72%, rgba(0, 0, 0, 0.94) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), transparent 58%);
}

.inner-hero--product .inner-hero__visual,
.inner-hero--products .inner-hero__visual {
  background: var(--totachi-white);
}

.inner-hero--product .inner-hero__visual > img,
.inner-hero--products .inner-hero__visual > img {
  padding: clamp(26px, 4vw, 54px);
  object-fit: contain;
}

.inner-hero--product .inner-hero__visual::after,
.inner-hero--products .inner-hero__visual::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 36%);
}

.category-matrix {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.category-tile {
  position: relative;
  min-height: 510px;
  grid-column: span 4;
  border: 1px solid var(--totachi-line);
  background: var(--totachi-black);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.09);
  overflow: hidden;
  transition: box-shadow 240ms var(--ease), transform 220ms var(--ease);
}

.category-tile:hover,
.category-tile:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.14);
}

.category-tile:first-child {
  grid-column: span 8;
}

.category-tile > a {
  display: grid;
  height: 100%;
  grid-template-rows: minmax(250px, 1fr) auto;
  color: var(--totachi-ink);
  background: var(--totachi-white);
}

.category-tile__media {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: center;
  padding: clamp(24px, 3vw, 44px);
  background:
    linear-gradient(135deg, rgba(196, 18, 47, 0.05), transparent 58%),
    #f7f7f7;
  overflow: hidden;
}

.category-tile__media::after {
  position: absolute;
  top: -80%;
  right: -54%;
  width: 72%;
  height: 220%;
  background: rgba(196, 18, 47, 0.08);
  content: "";
  transform: rotate(25deg);
  transition: transform 600ms var(--ease);
}

.category-tile:hover .category-tile__media::after {
  transform: rotate(25deg) translateX(-70%);
}

.category-tile__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.18));
  transition: transform 600ms var(--ease);
}

.category-tile:first-child .category-tile__media img {
  height: 320px;
}

.category-tile:hover .category-tile__media img {
  transform: translateY(-8px) scale(1.025);
}

.category-tile__content {
  position: relative;
  display: grid;
  min-height: 220px;
  align-content: start;
  padding: clamp(24px, 3vw, 38px);
  border-top: 5px solid var(--totachi-red);
  transition: color 280ms ease, background 280ms ease;
}

.category-tile:hover .category-tile__content {
  color: var(--totachi-white);
  background: var(--totachi-red);
}

.category-tile__content > span {
  margin-bottom: 22px;
  color: var(--totachi-red);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.category-tile:hover .category-tile__content > span {
  color: var(--totachi-white);
}

.category-tile__content h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
}

.category-tile__content p {
  max-width: 620px;
  margin-bottom: 28px;
  color: #555555;
  font-size: 0.84rem;
  line-height: 1.65;
}

.category-tile:hover .category-tile__content p {
  color: rgba(255, 255, 255, 0.82);
}

.category-tile__content > strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-tile__content i {
  font-size: 1.15rem;
  font-style: normal;
}

.category-matrix--compact .category-tile,
.category-matrix--compact .category-tile:first-child {
  min-height: 330px;
  grid-column: span 4;
}

.category-matrix--compact .category-tile > a {
  grid-template-rows: 210px auto;
}

.category-matrix--compact .category-tile__media {
  min-height: 210px;
  padding: 24px;
}

.category-matrix--compact .category-tile__media img,
.category-matrix--compact .category-tile:first-child .category-tile__media img {
  height: 168px;
}

.category-matrix--compact .category-tile__content {
  min-height: 120px;
  padding: 22px;
}

.category-matrix--compact .category-tile__content > span {
  margin-bottom: 12px;
}

.category-matrix--compact .category-tile__content h3 {
  margin-bottom: 18px;
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
}

.official-tools {
  isolation: isolate;
}

.official-tools__beam {
  position: absolute;
  z-index: -1;
  top: -40%;
  right: 4%;
  width: 18%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(196, 18, 47, 0.34), transparent);
  transform: rotate(28deg);
}

.official-tools__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.official-tool {
  position: relative;
  display: grid;
  min-height: 300px;
  align-content: start;
  padding: clamp(25px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.045);
  overflow: hidden;
  transition: color 280ms ease, background 280ms ease, transform 280ms var(--ease);
}

.official-tool:hover {
  color: var(--totachi-white);
  background: var(--totachi-red);
  transform: translateY(-8px);
}

.official-tool > span {
  margin-bottom: 55px;
  color: var(--totachi-red);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.official-tool:hover > span {
  color: var(--totachi-white);
}

.official-tool strong {
  max-width: 300px;
  margin-bottom: 18px;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.official-tool p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.official-tool > i {
  position: absolute;
  right: 28px;
  bottom: 24px;
  font-size: 1.5rem;
  font-style: normal;
}

.system-bridge {
  padding-block: clamp(58px, 8vw, 110px);
  color: var(--totachi-white);
  background: var(--totachi-red);
}

.system-bridge__inner {
  position: relative;
  display: grid;
  min-height: 310px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: clamp(34px, 6vw, 72px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 45%),
    var(--totachi-black);
  overflow: hidden;
}

.system-bridge__inner::after {
  position: absolute;
  top: -110%;
  right: 10%;
  width: 70px;
  height: 320%;
  background: rgba(196, 18, 47, 0.7);
  content: "";
  transform: rotate(32deg);
}

.system-bridge h2 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  font-size: clamp(2.25rem, 4.8vw, 5rem);
}

.system-bridge .button {
  position: relative;
  z-index: 2;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.74fr);
  align-items: start;
  gap: clamp(52px, 9vw, 140px);
}

.product-detail__copy h2 {
  margin-bottom: 32px;
}

.product-detail__copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 34px;
  color: #494949;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.product-detail__note {
  display: grid;
  max-width: 780px;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 18px;
  padding: 23px 28px 23px 22px;
  color: var(--totachi-white);
  background: var(--totachi-black);
}

.product-detail__note > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--totachi-white);
  background: var(--totachi-red);
  font-weight: 700;
}

.product-detail__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  line-height: 1.62;
}

.product-range {
  border: 1px solid var(--totachi-line);
  background: #f4f4f4;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.product-range__head {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 30px;
  color: var(--totachi-white);
  background: var(--totachi-red);
}

.product-range__head span,
.product-range__head strong {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-range ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-range li {
  display: grid;
  min-height: 72px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 15px;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--totachi-white);
  transition: color 220ms ease, background 220ms ease, padding 220ms var(--ease);
}

.product-range li:last-child {
  border-bottom: 0;
}

.product-range li:hover {
  padding-left: 36px;
  color: var(--totachi-white);
  background: var(--totachi-black);
}

.product-range li span {
  color: var(--totachi-red);
  font-size: 0.62rem;
  font-weight: 700;
}

.product-range li strong {
  font-size: 0.8rem;
  line-height: 1.35;
}

.manufacturer-sources {
  position: relative;
  padding-block: clamp(70px, 9vw, 130px);
  overflow: hidden;
  color: var(--totachi-white);
  background:
    linear-gradient(116deg, var(--totachi-red) 0 53%, var(--totachi-black) 53% 100%);
}

.manufacturer-sources::after {
  position: absolute;
  top: -70%;
  left: 47%;
  width: 3px;
  height: 240%;
  background: rgba(255, 255, 255, 0.42);
  content: "";
  transform: rotate(26deg);
}

.manufacturer-sources__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
  align-items: end;
  gap: clamp(58px, 10vw, 150px);
}

.manufacturer-sources h2 {
  max-width: 700px;
}

.manufacturer-sources__links {
  display: grid;
  gap: 10px;
}

.manufacturer-sources__links a {
  display: grid;
  min-height: 105px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.manufacturer-sources__links a:hover {
  color: var(--totachi-red);
  background: var(--totachi-white);
  transform: translateX(-8px);
}

.manufacturer-sources__links span {
  color: var(--totachi-red);
  font-size: 0.65rem;
  font-weight: 700;
}

.manufacturer-sources__links a:hover span {
  color: var(--totachi-red);
}

.manufacturer-sources__links strong {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.manufacturer-sources__links i {
  font-size: 1.3rem;
  font-style: normal;
}

.solution-logic {
  isolation: isolate;
}

.solution-logic__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: clamp(64px, 10vw, 150px);
}

.solution-logic__copy h2 {
  max-width: 780px;
  margin-bottom: 34px;
}

.solution-logic__copy > p:last-child {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
}

.solution-logic__benefits {
  border-top: 4px solid var(--totachi-red);
}

.solution-logic__benefits > div {
  display: grid;
  min-height: 82px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.solution-logic__benefits span {
  color: var(--totachi-red);
  font-size: 0.65rem;
  font-weight: 700;
}

.solution-logic__benefits strong {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.solution-logic__orbit {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 1%;
  display: grid;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(196, 18, 47, 0.24);
  border-radius: 50%;
  opacity: 0.65;
  transform: translate(-46%, -50%);
}

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

.solution-logic__orbit::before { inset: 14%; }
.solution-logic__orbit::after { inset: 31%; border-color: rgba(196, 18, 47, 0.48); }
.solution-logic__orbit strong { color: rgba(255, 255, 255, 0.1); font-size: 7vw; }

.technology-library {
  isolation: isolate;
}

.technology-library__lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
}

.technology-library__lines i {
  position: absolute;
  top: -50%;
  right: 8%;
  width: 2px;
  height: 200%;
  background: rgba(255, 255, 255, 0.38);
  transform: rotate(29deg);
}

.technology-library__lines i:nth-child(2) { right: 16%; width: 80px; background: rgba(0, 0, 0, 0.1); }
.technology-library__lines i:nth-child(3) { right: 25%; }

.technology-library__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.technology-profile {
  position: relative;
  display: grid;
  min-height: 470px;
  align-content: start;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 44%),
    rgba(0, 0, 0, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: box-shadow 240ms var(--ease), transform 220ms var(--ease);
}

.technology-profile:hover,
.technology-profile:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.2);
}

.technology-profile > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.technology-profile__logo {
  display: grid;
  height: 170px;
  place-items: center;
  margin-block: 25px;
  padding: 18px;
  background: var(--totachi-white);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.technology-profile__logo img {
  width: 100%;
  height: 126px;
  object-fit: contain;
}

.technology-profile h3 {
  margin-bottom: 16px;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.technology-profile p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  line-height: 1.65;
}

.technology-profile > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.technology-profile > a i {
  font-size: 1.2rem;
  font-style: normal;
}

.component-tech__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(52px, 9vw, 140px);
}

.component-tech__heading {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.component-tech__list {
  display: grid;
  gap: 9px;
}

.component-tech__item {
  display: grid;
  min-height: 178px;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid var(--totachi-line);
  background: #f5f5f5;
  transition: color 260ms ease, background 260ms ease, transform 260ms var(--ease);
}

.component-tech__item:hover {
  color: var(--totachi-white);
  background: var(--totachi-black);
  transform: translateX(-8px);
}

.component-tech__item > span {
  color: var(--totachi-red);
  font-size: 0.66rem;
  font-weight: 700;
}

.component-tech__item h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.component-tech__item p {
  max-width: 680px;
  margin: 0;
  color: #555555;
  font-size: 0.79rem;
}

.component-tech__item:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.component-tech__item > i {
  font-size: 1.45rem;
  font-style: normal;
}

.manufacturer-band {
  padding-block: 58px;
  color: var(--totachi-white);
  background: var(--totachi-red);
}

.manufacturer-band__inner {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 24px;
}

.manufacturer-band__inner > span {
  font-size: 1.5rem;
  font-weight: 700;
}

.manufacturer-band__inner > strong {
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  text-transform: uppercase;
}

.history__timeline {
  display: grid;
  margin: 0 0 34px;
  padding: 0;
  border-top: 1px solid var(--totachi-line);
  list-style: none;
}

.history__timeline li {
  display: grid;
  min-height: 148px;
  grid-template-columns: minmax(150px, 0.32fr) 1fr;
  align-items: center;
  gap: 34px;
  padding: 24px clamp(24px, 4vw, 52px);
  border-bottom: 1px solid var(--totachi-line);
  background: var(--totachi-white);
  transition: color 260ms ease, background 260ms ease, padding 260ms var(--ease);
}

.history__timeline li:hover {
  padding-left: clamp(32px, 5vw, 68px);
  color: var(--totachi-white);
  background: var(--totachi-black);
}

.history__timeline span {
  color: var(--totachi-red);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.history__timeline p {
  max-width: 850px;
  margin: 0;
  color: #4b4b4b;
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
}

.history__timeline li:hover p {
  color: rgba(255, 255, 255, 0.76);
}

.source-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 18px;
  padding: 13px 18px;
  color: var(--totachi-white);
  background: var(--totachi-red);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.source-link span {
  color: rgba(255, 255, 255, 0.72);
}

.source-link i {
  font-size: 1.1rem;
  font-style: normal;
}

.manufacturing {
  isolation: isolate;
}

.manufacturing__line {
  position: absolute;
  z-index: -1;
  top: -60%;
  right: 12%;
  width: 100px;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(196, 18, 47, 0.34), transparent);
  transform: rotate(28deg);
}

.manufacturing__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(52px, 9vw, 138px);
}

.manufacturing__visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.manufacturing__visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.manufacturing__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 62%);
  content: "";
}

.manufacturing__visual span {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  color: var(--totachi-white);
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
}

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

.manufacturing__copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
}

.about-values__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: clamp(48px, 9vw, 140px);
}

.about-values__grid > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.newsroom__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.news-card {
  position: relative;
  display: grid;
  min-height: 430px;
  align-content: start;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--totachi-line);
  background:
    linear-gradient(145deg, rgba(196, 18, 47, 0.06), transparent 48%),
    #f5f5f5;
  overflow: hidden;
  transition: color 280ms ease, background 280ms ease, transform 280ms var(--ease);
}

.news-card::before {
  position: absolute;
  top: -80%;
  right: -42%;
  width: 44%;
  height: 250%;
  background: rgba(196, 18, 47, 0.09);
  content: "";
  transform: rotate(28deg);
}

.news-card:hover {
  color: var(--totachi-white);
  background: var(--totachi-black);
  transform: translateY(-7px);
}

.news-card__meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 74px;
  color: var(--totachi-red);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.news-card h3 {
  position: relative;
  max-width: 640px;
  margin-bottom: 22px;
  font-size: clamp(1.55rem, 2.7vw, 2.9rem);
}

.news-card p {
  position: relative;
  max-width: 650px;
  margin-bottom: 34px;
  color: #555555;
  font-size: 0.87rem;
}

.news-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.news-card > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.news-card > a i {
  font-size: 1.2rem;
  font-style: normal;
}

.news-source-band {
  padding-block: clamp(64px, 8vw, 110px);
  color: var(--totachi-white);
  background: var(--totachi-black);
}

.news-source-band__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.news-source-band__grid a {
  display: grid;
  min-height: 140px;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 26px 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  transition: color 220ms ease, background 220ms ease;
}

.news-source-band__grid a:hover {
  color: var(--totachi-red);
  background: var(--totachi-white);
}

.news-source-band__grid span {
  color: var(--totachi-red);
  font-size: 0.7rem;
  font-weight: 700;
}

.news-source-band__grid strong {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
}

.news-source-band__grid i {
  font-size: 1.4rem;
  font-style: normal;
}

.partner-support__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.partner-support__grid li {
  position: relative;
  display: grid;
  min-height: 280px;
  grid-column: span 2;
  align-content: space-between;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--totachi-line);
  background: #f4f4f4;
  overflow: hidden;
  transition: color 280ms ease, background 280ms ease, transform 280ms var(--ease);
}

.partner-support__grid li:nth-child(4) { grid-column: 2 / span 2; }
.partner-support__grid li:nth-child(5) { grid-column: 4 / span 2; }

.partner-support__grid li::after {
  position: absolute;
  right: -34px;
  bottom: -74px;
  color: rgba(196, 18, 47, 0.08);
  content: "T";
  font-size: 220px;
  font-weight: 700;
  line-height: 1;
}

.partner-support__grid li:hover {
  color: var(--totachi-white);
  background: var(--totachi-red);
  transform: translateY(-7px);
}

.partner-support__grid span,
.partner-support__grid strong {
  position: relative;
  z-index: 1;
}

.partner-support__grid span {
  color: var(--totachi-red);
  font-size: 0.7rem;
  font-weight: 700;
}

.partner-support__grid li:hover span {
  color: var(--totachi-white);
}

.partner-support__grid strong {
  max-width: 280px;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1.08;
}

.partner-contact {
  position: relative;
  min-height: 700px;
  padding-block: clamp(90px, 12vw, 170px);
  overflow: hidden;
  color: var(--totachi-white);
  background: var(--totachi-black);
  isolation: isolate;
}

.partner-contact__media,
.partner-contact__scrim {
  position: absolute;
  inset: 0;
}

.partner-contact__media {
  z-index: -2;
  inset: -5%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
}

.partner-contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-contact__scrim {
  z-index: -1;
  background: linear-gradient(90deg, rgba(196, 18, 47, 0.97), rgba(196, 18, 47, 0.78) 48%, rgba(0, 0, 0, 0.78) 72%, rgba(0, 0, 0, 0.94));
}

.partner-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.62fr);
  align-items: center;
  gap: clamp(54px, 9vw, 140px);
}

.partner-contact__copy h2 {
  max-width: 890px;
  margin-bottom: 30px;
}

.partner-contact__copy > p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.partner-contact__action {
  display: grid;
  min-height: 330px;
  align-content: space-between;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.58);
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(16px);
}

.partner-contact__action > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.partner-contact__action > a:not(.button) {
  overflow-wrap: anywhere;
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.05;
}

.site-footer__grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.7fr) minmax(170px, 0.55fr) minmax(210px, 0.7fr);
  gap: clamp(36px, 5vw, 80px);
}

.site-footer__partner {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
  padding: 13px 18px;
  color: var(--totachi-red);
  background: var(--totachi-white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer__partner:hover {
  color: var(--totachi-white);
  background: var(--totachi-red);
}

.site-footer__nav--products {
  grid-template-columns: 1fr;
}

.about-copy .button {
  width: fit-content;
  margin-top: 30px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: #4b4b4b;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.solution__content > .button {
  width: fit-content;
  margin-top: 34px;
}

@media (max-width: 1180px) {
  .nav-mega {
    display: none;
  }

  .inner-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
    gap: 48px;
  }

  .inner-hero__visual,
  .inner-hero__visual > img {
    min-height: 430px;
    height: 430px;
  }

  .category-tile,
  .category-tile:first-child {
    grid-column: span 6;
  }

  .category-matrix--compact .category-tile,
  .category-matrix--compact .category-tile:first-child {
    grid-column: span 6;
  }

  .site-footer__grid {
    grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(180px, 0.6fr));
  }

  .site-footer__nav:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 960px) {
  .inner-hero {
    min-height: 780px;
  }

  .inner-hero__inner {
    min-height: calc(780px - var(--header-height));
  }

  .inner-hero__grid {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .inner-hero__visual {
    display: none;
  }

  .inner-hero__copy {
    max-width: 820px;
  }

  .official-tools__grid,
  .technology-library__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .official-tool:last-child {
    grid-column: 1 / -1;
  }

  .product-detail__grid,
  .manufacturer-sources__grid,
  .solution-logic__grid,
  .component-tech__grid,
  .manufacturing__grid,
  .about-values__grid,
  .partner-contact__grid {
    grid-template-columns: 1fr;
  }

  .product-range {
    width: min(100%, 680px);
  }

  .manufacturer-sources {
    background: linear-gradient(160deg, var(--totachi-red) 0 53%, var(--totachi-black) 53% 100%);
  }

  .manufacturer-sources__grid {
    gap: 70px;
  }

  .manufacturer-sources__links {
    width: min(100%, 680px);
  }

  .component-tech__heading {
    position: static;
  }

  .manufacturing__visual {
    width: min(100%, 720px);
  }

  .partner-support__grid li,
  .partner-support__grid li:nth-child(4),
  .partner-support__grid li:nth-child(5) {
    grid-column: span 3;
  }

  .partner-contact__action {
    width: min(100%, 620px);
  }
}

@media (max-width: 820px) {
  .category-matrix,
  .category-matrix--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-tile,
  .category-tile:first-child,
  .category-matrix--compact .category-tile,
  .category-matrix--compact .category-tile:first-child {
    grid-column: span 1;
  }

  .system-bridge__inner {
    grid-template-columns: 1fr;
  }

  .system-bridge .button {
    width: fit-content;
  }

  .newsroom__grid,
  .news-source-band__grid {
    grid-template-columns: 1fr;
  }

  .manufacturer-band__inner {
    grid-template-columns: 44px 1fr;
  }

  .manufacturer-band .button {
    width: fit-content;
    grid-column: 1 / -1;
  }

  .site-footer__grid,
  .site-footer__nav:last-child {
    grid-template-columns: 1fr 1fr;
    grid-column: auto;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .mobile-nav__inner {
    padding-top: 16px;
  }

  .mobile-nav > .mobile-nav__inner > a {
    min-height: 58px;
    font-size: clamp(1.12rem, 5.4vw, 1.7rem);
  }

  .mobile-nav__categories {
    grid-template-columns: 1fr;
  }

  .inner-hero,
  .inner-hero__inner {
    min-height: 720px;
  }

  .inner-hero__inner {
    min-height: calc(720px - var(--header-height));
    padding-block: 22px 54px;
  }

  .inner-hero__grid {
    gap: 30px;
  }

  .inner-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(2.75rem, 13vw, 4.45rem);
  }

  .inner-hero__copy > p:last-child {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .breadcrumbs {
    font-size: 0.56rem;
  }

  .category-matrix,
  .category-matrix--compact,
  .official-tools__grid,
  .technology-library__grid {
    grid-template-columns: 1fr;
  }

  .category-tile,
  .category-tile:first-child {
    min-height: 440px;
  }

  .category-tile > a {
    grid-template-rows: 240px auto;
  }

  .category-tile__media,
  .category-tile:first-child .category-tile__media {
    min-height: 240px;
  }

  .category-tile__media img,
  .category-tile:first-child .category-tile__media img {
    height: 200px;
  }

  .category-tile__content {
    min-height: 200px;
  }

  .category-matrix--compact .category-tile,
  .category-matrix--compact .category-tile:first-child {
    min-height: 300px;
  }

  .category-matrix--compact .category-tile > a {
    grid-template-rows: 185px auto;
  }

  .official-tool,
  .official-tool:last-child {
    min-height: 270px;
    grid-column: auto;
  }

  .system-bridge__inner {
    min-height: 370px;
    padding: 30px 24px;
  }

  .system-bridge .button,
  .manufacturer-band .button {
    width: 100%;
  }

  .product-detail__note {
    grid-template-columns: 38px 1fr;
    padding: 20px;
  }

  .product-range__head,
  .product-range li {
    padding-inline: 20px;
  }

  .manufacturer-sources {
    background: linear-gradient(165deg, var(--totachi-red) 0 49%, var(--totachi-black) 49% 100%);
  }

  .manufacturer-sources__links a {
    grid-template-columns: 34px 1fr auto;
    padding: 18px 20px;
  }

  .technology-profile {
    min-height: 440px;
  }

  .component-tech__item {
    min-height: 190px;
    grid-template-columns: 34px 1fr auto;
    gap: 14px;
    padding: 22px 18px;
  }

  .history__timeline li {
    min-height: 180px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .history__timeline span {
    font-size: 2.5rem;
  }

  .manufacturing__visual,
  .manufacturing__visual img {
    min-height: 390px;
    height: 390px;
  }

  .news-card {
    min-height: 410px;
  }

  .news-card__meta {
    margin-bottom: 54px;
  }

  .news-source-band__grid a {
    min-height: 116px;
    grid-template-columns: 36px 1fr auto;
    padding: 22px;
  }

  .partner-support__grid {
    grid-template-columns: 1fr;
  }

  .partner-support__grid li,
  .partner-support__grid li:nth-child(4),
  .partner-support__grid li:nth-child(5) {
    min-height: 230px;
    grid-column: auto;
  }

  .partner-contact {
    min-height: 780px;
  }

  .partner-contact__action {
    min-height: 300px;
    padding: 26px 22px;
  }

  .site-footer__grid,
  .site-footer__nav:last-child {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inner-hero__media,
  .partner-contact__media {
    --parallax-y: 0px !important;
    transform: none !important;
  }

  .nav-mega,
  .category-tile__media img,
  .category-tile__media::after {
    transition: none !important;
  }
}

/* ==========================================================================
   TOTACHI EU PRO — FAST PRODUCT DISCOVERY
   ========================================================================== */

.search-toggle {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--totachi-white);
  background: rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.search-toggle:hover,
.search-toggle[aria-expanded="true"] {
  color: var(--totachi-red);
  background: var(--totachi-white);
  transform: translateY(-2px);
}

.search-toggle svg,
.site-search__field svg,
.product-navigator__search svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-toggle > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-search {
  position: fixed;
  z-index: 1400;
  inset: 0;
  display: grid;
  place-items: start center;
  padding: clamp(18px, 5vh, 58px) 20px;
  color: var(--totachi-ink);
  overflow: auto;
}

.site-search__backdrop {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  cursor: default;
}

.site-search__panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: calc(100dvh - clamp(36px, 10vh, 116px));
  padding: clamp(30px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(196, 18, 47, 0.07), transparent 38%),
    var(--totachi-white);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.42);
  overflow: auto;
  overscroll-behavior: contain;
}

.site-search__panel::after {
  position: absolute;
  top: 0;
  right: var(--cut);
  left: 0;
  height: 5px;
  background: var(--totachi-red);
  content: "";
}

.site-search__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-search__close {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--totachi-line);
  color: var(--totachi-white);
  background: var(--totachi-black);
  cursor: pointer;
}

.site-search__close span {
  margin-top: -4px;
  font-size: 2rem;
  font-weight: 400;
}

.site-search h2 {
  max-width: 780px;
  margin-bottom: clamp(28px, 4vw, 46px);
  font-size: clamp(2rem, 4.4vw, 4.5rem);
}

.site-search__field,
.product-navigator__search {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 16px;
}

.site-search__field {
  min-height: 72px;
  padding: 0 22px;
  border: 2px solid var(--totachi-black);
  color: var(--totachi-red);
  background: var(--totachi-white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-search__field:focus-within {
  border-color: var(--totachi-red);
  outline: 3px solid rgba(196, 18, 47, 0.2);
  outline-offset: 3px;
}

.site-search__field input:focus-visible {
  outline: 0;
  box-shadow: none;
}

.site-search__field input,
.product-navigator__search input {
  width: 100%;
  min-width: 0;
  padding: 18px 0;
  border: 0;
  outline: 0;
  color: var(--totachi-black);
  background: transparent;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
}

.site-search__status,
.product-navigator__status {
  margin-block: 16px;
  color: #666666;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-search__status strong,
.product-navigator__status strong {
  color: var(--totachi-red);
}

.site-search__results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.site-search__results a {
  display: grid;
  min-height: 92px;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--totachi-line);
  background: #f4f4f4;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-search__results a:hover,
.site-search__results a:focus-visible {
  color: var(--totachi-white);
  background: var(--totachi-red);
  transform: translateY(-3px);
}

.site-search__results a > span {
  color: var(--totachi-red);
  font-size: 0.64rem;
  font-weight: 700;
}

.site-search__results a:hover > span,
.site-search__results a:focus-visible > span {
  color: var(--totachi-white);
}

.site-search__results strong {
  font-size: 0.84rem;
  line-height: 1.25;
}

.site-search__results small {
  display: block;
  margin-top: 5px;
  color: #777777;
  font-size: 0.58rem;
  font-weight: 500;
}

.site-search__results a:hover small,
.site-search__results a:focus-visible small {
  color: rgba(255, 255, 255, 0.72);
}

.site-search__results i {
  font-size: 1.2rem;
  font-style: normal;
}

.site-search__empty,
.product-navigator__empty {
  padding: 24px;
  color: var(--totachi-white);
  background: var(--totachi-red);
}

.site-search__hint {
  max-width: 800px;
  margin: 24px 0 0;
  color: #666666;
  font-size: 0.72rem;
}

.product-navigator {
  margin-bottom: clamp(34px, 5vw, 62px);
  padding: clamp(26px, 4vw, 48px);
  color: var(--totachi-white);
  background:
    linear-gradient(130deg, rgba(196, 18, 47, 0.96) 0 34%, rgba(0, 0, 0, 0.96) 34% 100%),
    var(--totachi-black);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.product-navigator__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: end;
  margin-bottom: 34px;
}

.product-navigator__heading h3 {
  max-width: 700px;
  font-size: clamp(1.7rem, 3.1vw, 3.4rem);
}

.product-navigator__heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.product-navigator__search {
  min-height: 66px;
  padding-inline: 20px;
  color: var(--totachi-red);
  background: var(--totachi-white);
}

.product-navigator__filters,
.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.product-navigator__filters button,
.news-filter button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.product-navigator__filters button:hover,
.product-navigator__filters button[aria-pressed="true"] {
  color: var(--totachi-red);
  background: var(--totachi-white);
  transform: translateY(-2px);
}

.product-navigator__status {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
}

.product-navigator__empty {
  margin: 22px 0 0;
}

.product-range--visual {
  background: var(--totachi-black);
}

.category-quicknav {
  position: sticky;
  z-index: 30;
  top: var(--header-height);
  color: var(--totachi-black);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--totachi-line);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.admin-bar .category-quicknav {
  top: calc(var(--header-height) + 32px);
}

.category-quicknav__inner {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.category-quicknav__inner > span {
  flex: 0 0 auto;
  color: var(--totachi-red);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-quicknav__links {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--totachi-red) transparent;
}

.category-quicknav__links a {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  gap: 9px;
  padding-inline: 13px;
  color: #565656;
  white-space: nowrap;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.category-quicknav__links a b {
  color: var(--totachi-red);
  font-size: 0.56rem;
}

.category-quicknav__links a:hover,
.category-quicknav__links a.is-current {
  color: var(--totachi-white);
  background: var(--totachi-red);
}

.category-quicknav__links a:hover b,
.category-quicknav__links a.is-current b {
  color: var(--totachi-white);
}

.product-detail__grid {
  grid-template-columns: minmax(300px, 0.68fr) minmax(580px, 1.32fr);
  gap: clamp(42px, 6vw, 88px);
}

.product-range--visual .subcategory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.product-range--visual .subcategory-grid li {
  display: grid;
  min-height: 124px;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 16px;
  padding: 22px;
  border: 0;
  color: var(--totachi-white);
  background: #151515;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.product-range--visual .subcategory-grid li:hover {
  padding-left: 22px;
  color: var(--totachi-white);
  background: var(--totachi-red);
  transform: translateY(-3px);
}

.product-range--visual .subcategory-grid span,
.product-range--visual .subcategory-grid small {
  color: var(--totachi-red);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-range--visual .subcategory-grid small {
  color: rgba(255, 255, 255, 0.4);
}

.product-range--visual .subcategory-grid li:hover span,
.product-range--visual .subcategory-grid li:hover small {
  color: var(--totachi-white);
}

.product-range--visual .subcategory-grid strong {
  grid-column: 1 / -1;
  font-size: clamp(0.74rem, 1vw, 0.9rem);
}

.news-filter {
  margin: 0 0 30px;
}

.news-filter button {
  border-color: var(--totachi-line);
  color: #555555;
  background: #f1f1f1;
}

.news-filter button:hover,
.news-filter button[aria-pressed="true"] {
  color: var(--totachi-white);
  background: var(--totachi-red);
  transform: translateY(-2px);
}

.news-card--featured {
  min-height: 360px;
  grid-column: 1 / -1;
  color: var(--totachi-white);
  background:
    linear-gradient(112deg, rgba(196, 18, 47, 0.96), rgba(196, 18, 47, 0.8) 52%, rgba(0, 0, 0, 0.92) 52%),
    var(--totachi-red);
}

.news-card--featured p,
.news-card--featured .news-card__meta {
  color: rgba(255, 255, 255, 0.78);
}

.news-card__latest {
  position: relative;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--totachi-red);
  background: var(--totachi-white);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-network__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.partner-office {
  position: relative;
  min-height: 430px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--totachi-line);
  background: var(--totachi-white);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.partner-office--local {
  color: var(--totachi-white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 45%),
    var(--totachi-red);
}

.partner-office:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
}

.partner-office__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 70px;
  color: var(--totachi-red);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-office--local .partner-office__head {
  color: var(--totachi-white);
}

.partner-office h3 {
  max-width: 520px;
  margin-bottom: 36px;
  font-size: clamp(1.65rem, 3vw, 3rem);
}

.partner-office dl,
.partner-office dl div {
  margin: 0;
}

.partner-office dl {
  display: grid;
  gap: 14px;
}

.partner-office dl div {
  display: grid;
  grid-template-columns: minmax(76px, 0.28fr) 1fr;
  gap: 18px;
  padding-top: 13px;
  border-top: 1px solid currentColor;
}

.partner-office dt {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-office dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.79rem;
  font-weight: 500;
}

.partner-network__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.product-card:hover,
.product-card:focus-within,
.category-tile:hover,
.category-tile:focus-within,
.official-tool:hover,
.news-card:hover,
.partner-support__grid li:hover {
  transform: translateY(-4px);
}

@media (max-width: 960px) {
  .product-navigator__heading,
  .partner-network__grid {
    grid-template-columns: 1fr;
  }

  .product-detail__grid {
    grid-template-columns: 1fr;
  }

  .product-range--visual {
    width: 100%;
  }

  .partner-network__actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .admin-bar .category-quicknav {
    top: calc(var(--header-height) + 46px);
  }

  .category-quicknav__inner {
    min-height: 54px;
    gap: 14px;
  }

  .category-quicknav__inner > span {
    display: none;
  }

  .category-quicknav__links {
    width: 100%;
  }

  .category-quicknav__links a {
    min-height: 54px;
    padding-inline: 11px;
    font-size: 0.56rem;
  }

  .search-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .site-search {
    padding: 10px;
  }

  .site-search__panel {
    max-height: calc(100dvh - 20px);
    padding: 26px 18px;
  }

  .site-search__results {
    grid-template-columns: 1fr;
  }

  .site-search__results a {
    min-height: 80px;
    grid-template-columns: 38px 1fr auto;
    padding: 14px;
  }

  .site-search__field {
    min-height: 62px;
  }

  .product-navigator {
    padding: 26px 18px;
    background: linear-gradient(155deg, var(--totachi-red) 0 31%, var(--totachi-black) 31% 100%);
  }

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

  .product-navigator__filters button {
    min-height: 50px;
  }

  .product-range--visual .subcategory-grid {
    grid-template-columns: 1fr;
  }

  .news-card--featured {
    grid-column: auto;
    background: linear-gradient(150deg, var(--totachi-red) 0 64%, var(--totachi-black) 64% 100%);
  }

  .partner-office {
    min-height: 390px;
  }

  .partner-office__head {
    margin-bottom: 50px;
  }

  .partner-office dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .search-toggle,
  .site-search__results a,
  .product-navigator__filters button,
  .news-filter button,
  .partner-office,
  .product-range--visual .subcategory-grid li {
    transform: none !important;
  }
}

/* ========================================================================== 
   TOTACHI EU PRO 0.7.0 — OFFICIAL CATEGORY INTELLIGENCE
   Concise manufacturer-catalogue signals, mobile-first and lift-only.
   ========================================================================== */

.category-intelligence {
  background:
    linear-gradient(135deg, rgba(196, 18, 47, 0.045), transparent 34%),
    var(--totachi-soft);
}

.category-intelligence__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-intelligence__card {
  position: relative;
  display: flex;
  min-height: 282px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--totachi-line);
  background: var(--totachi-white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.category-intelligence__card::before {
  position: absolute;
  top: 0;
  right: var(--cut);
  left: 0;
  height: 4px;
  background: var(--totachi-red);
  content: "";
}

.category-intelligence__card:hover,
.category-intelligence__card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12);
}

.category-intelligence__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 42px;
  color: var(--totachi-red);
}

.category-intelligence__meta span,
.category-intelligence__meta small {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-intelligence__meta small {
  color: #777777;
  font-size: 0.55rem;
}

.category-intelligence__card h3 {
  max-width: 360px;
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.category-intelligence__card p {
  max-width: 420px;
  margin: auto 0 0;
  color: #565656;
  font-size: 0.84rem;
  line-height: 1.65;
}

.category-intelligence__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--totachi-line);
}

.category-intelligence__footer p {
  display: flex;
  max-width: 760px;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: #656565;
  font-size: 0.73rem;
  line-height: 1.55;
}

.category-intelligence__footer p span {
  flex: 0 0 auto;
  color: var(--totachi-red);
  font-size: 1.05rem;
  line-height: 1;
}

.category-intelligence__source-link {
  display: inline-flex;
  min-height: 48px;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  color: var(--totachi-white);
  background: var(--totachi-black);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.category-intelligence__source-link:hover,
.category-intelligence__source-link:focus-visible {
  color: var(--totachi-white);
  background: var(--totachi-red);
  transform: translateY(-3px);
}

.category-intelligence__source-link i {
  font-size: 1rem;
  font-style: normal;
}

@media (max-width: 960px) {
  .category-intelligence__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-intelligence__card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .category-intelligence__grid {
    grid-template-columns: 1fr;
  }

  .category-intelligence__card,
  .category-intelligence__card:last-child {
    min-height: 240px;
    grid-column: auto;
  }

  .category-intelligence__meta {
    margin-bottom: 30px;
  }

  .category-intelligence__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .category-intelligence__source-link {
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-intelligence__card,
  .category-intelligence__source-link {
    transform: none !important;
    transition: none !important;
  }
}

/* ========================================================================== 
   TOTACHI EU PRO 0.8.0 — VERIFIED PRODUCT RECORDS
   Manufacturer-first product data cards; no inferred fitment or pricing.
   ========================================================================== */

.verified-products {
  background:
    linear-gradient(120deg, rgba(196, 18, 47, 0.24), transparent 42%),
    var(--totachi-black);
}

.verified-products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.verified-product {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(24px, 3.2vw, 38px);
  color: var(--totachi-black);
  background: var(--totachi-white);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.verified-product::before {
  position: absolute;
  top: 0;
  right: var(--cut);
  left: 0;
  height: 5px;
  background: var(--totachi-red);
  content: "";
}

.verified-product:hover,
.verified-product:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.28);
}

.verified-product__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 42px;
  color: var(--totachi-red);
}

.verified-product__topline span,
.verified-product__topline small,
.verified-product__family,
.verified-product__data > div > span,
.verified-product__links span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verified-product__topline small {
  color: #707070;
  font-size: 0.54rem;
}

.verified-product h3 {
  max-width: 640px;
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.verified-product h3 em {
  display: block;
  margin-top: 8px;
  color: var(--totachi-red);
  font-size: 0.56em;
  font-style: normal;
  letter-spacing: 0.08em;
}

.verified-product__family {
  margin-bottom: 20px;
  color: #6b6b6b;
}

.verified-product__summary {
  max-width: 600px;
  margin-bottom: 28px;
  color: #454545;
  font-size: 0.9rem;
  line-height: 1.62;
}

.verified-product__data {
  display: grid;
  gap: 18px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--totachi-line);
}

.verified-product__data > div {
  display: grid;
  gap: 8px;
}

.verified-product__data > div > span {
  color: var(--totachi-red);
}

.verified-product__data strong {
  font-size: 0.86rem;
  line-height: 1.4;
}

.verified-product__data ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.verified-product__data li {
  padding: 8px 10px;
  color: #444444;
  background: #f0f0f0;
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.2;
}

.verified-product__links {
  display: grid;
  gap: 6px;
  margin-top: 22px;
}

.verified-product__links a {
  display: grid;
  min-height: 48px;
  grid-template-columns: minmax(110px, 0.45fr) 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: var(--totachi-black);
  border: 1px solid var(--totachi-line);
  background: #f7f7f7;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.verified-product__links a:hover,
.verified-product__links a:focus-visible {
  color: var(--totachi-white);
  background: var(--totachi-red);
  transform: translateY(-2px);
}

.verified-product__links a:hover span,
.verified-product__links a:focus-visible span {
  color: rgba(255, 255, 255, 0.74);
}

.verified-product__links strong {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.verified-product__links i {
  font-size: 1rem;
  font-style: normal;
}

.verified-products__note {
  display: flex;
  max-width: 820px;
  align-items: flex-start;
  gap: 11px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.74rem;
  line-height: 1.55;
}

.verified-products__note span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--totachi-black);
  background: var(--totachi-red);
  font-size: 0.72rem;
  font-weight: 700;
}

@media (max-width: 820px) {
  .verified-products__grid {
    grid-template-columns: 1fr;
  }

  .verified-product {
    min-height: 390px;
  }
}

@media (max-width: 620px) {
  .verified-product {
    min-height: 360px;
    padding: 24px 20px;
  }

  .verified-product__topline {
    margin-bottom: 32px;
  }

  .verified-product__links a {
    grid-template-columns: minmax(86px, 0.5fr) 1fr auto;
    padding-inline: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .verified-product,
  .verified-product__links a {
    transform: none !important;
    transition: none !important;
  }
}

/*
   TOTACHI EU PRO 0.9.0 — PRODUCT EVIDENCE LAYER
   Remote previews point only to manufacturer-supplied Drive packshots.
*/
.verified-product__media {
  position: relative;
  display: grid;
  min-height: 190px;
  margin: -6px calc(-1 * var(--cut)) 26px;
  place-items: center;
  background: #151515;
  overflow: hidden;
}

.verified-product__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  pointer-events: none;
}

.verified-product__media img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: #151515;
}

.verified-product__media-fallback {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: var(--totachi-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 2.2rem;
  font-weight: 700;
}

.verified-product__media figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  z-index: 1;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.verified-product__evidence {
  margin-top: 18px;
  border-top: 1px solid var(--totachi-line);
}

.verified-product__evidence summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--totachi-red);
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

.verified-product__evidence summary::-webkit-details-marker {
  display: none;
}

.verified-product__evidence summary i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--totachi-white);
  background: var(--totachi-red);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1;
  transition: transform 180ms ease;
}

.verified-product__evidence[open] summary i {
  transform: rotate(45deg);
}

.verified-product__evidence dl {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  padding: 14px 0 0;
  border-top: 1px solid #e9e9e9;
}

.verified-product__evidence dl > div {
  display: grid;
  gap: 4px;
}

.verified-product__evidence dt {
  color: #777;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.verified-product__evidence dd {
  margin: 0;
  color: #282828;
  font-size: 0.7rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.verified-product__links {
  margin-top: 16px;
}

@media (max-width: 620px) {
  .verified-product__media,
  .verified-product__media img {
    min-height: 168px;
    height: 168px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .verified-product__evidence summary i {
    transition: none;
  }
}

/* ========================================================================== 
   TOTACHI EU PRO 1.0.0 — OFFICIAL CATALOGUE COVERAGE
   A lightweight audit index: finite lists are counted, selector ranges are not.
   ========================================================================== */

.catalog-coverage {
  background: #eef0f2;
}

.catalog-coverage__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 12px;
}

.catalog-coverage__metric {
  display: grid;
  min-height: 112px;
  align-content: center;
  gap: 6px;
  padding: 22px clamp(18px, 2.6vw, 30px);
  background: var(--totachi-black);
  color: var(--totachi-white);
}

.catalog-coverage__metric strong {
  color: var(--totachi-red);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.9;
}

.catalog-coverage__metric span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.catalog-coverage__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.catalog-coverage__item {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: clamp(20px, 2.8vw, 30px);
  background: var(--totachi-white);
  border: 1px solid #d9dcdf;
  box-shadow: 0 12px 30px rgba(12, 15, 18, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.catalog-coverage__item::before {
  position: absolute;
  top: 0;
  right: var(--cut);
  left: 0;
  height: 4px;
  background: var(--totachi-red);
  content: "";
}

.catalog-coverage__item:hover,
.catalog-coverage__item:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(12, 15, 18, 0.12);
}

.catalog-coverage__item-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--totachi-red);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.catalog-coverage__item-topline small {
  color: #767676;
  font-size: 0.54rem;
  letter-spacing: 0.08em;
}

.catalog-coverage__item h3 {
  max-width: 360px;
  margin: 0 0 20px;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.catalog-coverage__item-status {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--totachi-line);
}

.catalog-coverage__item-status strong {
  color: var(--totachi-red);
  font-size: 1.8rem;
  line-height: 1;
}

.catalog-coverage__item-status span {
  color: #666;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-coverage__item p {
  margin: 12px 0 0;
  color: #555;
  font-size: 0.78rem;
  line-height: 1.5;
}

.catalog-coverage__links {
  display: grid;
  gap: 5px;
  margin-top: 18px;
}

.catalog-coverage__links a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 6px 9px;
  color: var(--totachi-black);
  border: 1px solid var(--totachi-line);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.catalog-coverage__links a span {
  color: var(--totachi-red);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
}

.catalog-coverage__links a i {
  font-size: 0.9rem;
  font-style: normal;
}

.catalog-coverage__links a:hover,
.catalog-coverage__links a:focus-visible {
  color: var(--totachi-white);
  background: var(--totachi-red);
}

.catalog-coverage__links a:hover span,
.catalog-coverage__links a:focus-visible span {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 960px) {
  .catalog-coverage__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .catalog-coverage__metrics,
  .catalog-coverage__grid {
    grid-template-columns: 1fr;
  }

  .catalog-coverage__metric {
    min-height: 92px;
  }

  .catalog-coverage__item {
    min-height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-coverage__item,
  .catalog-coverage__links a {
    transform: none !important;
    transition: none !important;
  }
}
