@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;
}

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;
  }
}

