:root {
  color-scheme: dark;
  --xr-bg: #030706;
  --xr-surface: #07100e;
  --xr-surface-2: #0a1512;
  --xr-line: rgba(96, 222, 184, 0.28);
  --xr-line-soft: rgba(255, 255, 255, 0.11);
  --xr-accent: #56e5bd;
  --xr-accent-strong: #78f2ce;
  --xr-text: #f2f7f5;
  --xr-muted: #a9b8b3;
  --xr-container: 1240px;
}

html[data-theme="light"] {
  color-scheme: light;
  --xr-bg: #f2f6f4;
  --xr-surface: #ffffff;
  --xr-surface-2: #e7eeeb;
  --xr-line: rgba(0, 113, 88, 0.3);
  --xr-line-soft: rgba(11, 37, 30, 0.14);
  --xr-accent: #007b61;
  --xr-accent-strong: #005f4b;
  --xr-text: #0b1c17;
  --xr-muted: #536760;
}

html {
  scroll-behavior: smooth;
  background: var(--xr-bg);
}

body.xrsion-site {
  position: static;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 1 !important;
  background: var(--xr-bg);
  color: var(--xr-text);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.025em;
}

body.xrsion-site * {
  box-sizing: border-box;
}

body.xrsion-site a {
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.xr-theme-transition body,
.xr-theme-transition .xr-header,
.xr-theme-transition .xr-nav,
.xr-theme-transition .xr-strength-card,
.xr-theme-transition .xr-product-card,
.xr-theme-transition .xr-contact-band__inner,
.xr-theme-transition .xr-footer,
.xr-theme-transition .xr-page-hero__visual,
.xr-theme-transition .xr-contact-form-shell,
.xr-theme-transition .xr-standard-content > .xr-entry-content {
  transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

body.xrsion-site .page {
  min-height: 100vh;
  overflow: hidden;
  opacity: 1 !important;
}

body.xrsion-site .wow {
  visibility: visible !important;
}

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

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

.xr-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 84px;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(3, 7, 6, 0.94), rgba(3, 7, 6, 0.5));
  backdrop-filter: blur(16px);
}

.xr-header.is-scrolled {
  border-bottom-color: var(--xr-line-soft);
  background: rgba(3, 7, 6, 0.92);
}

.xr-header__inner {
  width: min(calc(100% - 64px), 1380px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.xr-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none !important;
}

.xr-logo img {
  width: auto;
  height: 36px;
}

/* ロゴのテーマ別出し分け（既定=ダーク） */
.xr-logo__img--light {
  display: none;
}

.xr-logo__img--dark {
  display: block;
}

html[data-theme="light"] .xr-logo__img--light {
  display: block;
}

html[data-theme="light"] .xr-logo__img--dark {
  display: none;
}

.xr-logo__accent {
  color: var(--xr-accent);
}

.xr-nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.xr-nav > a {
  color: #e8efed;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.xr-nav > a:hover,
.xr-nav > a:focus-visible {
  color: var(--xr-accent);
}

.xr-nav .xr-nav__contact {
  min-width: 154px;
  padding: 12px 18px;
  border: 1px solid var(--xr-line);
  color: var(--xr-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.xr-nav .xr-nav__contact:hover {
  border-color: var(--xr-accent);
  background: rgba(86, 229, 189, 0.08);
}

.xr-theme-toggle {
  min-width: 78px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--xr-line);
  color: var(--xr-accent);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.xr-theme-toggle:hover,
.xr-theme-toggle:focus-visible {
  border-color: var(--xr-accent);
  background: rgba(86, 229, 189, 0.08);
}

.xr-theme-toggle svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.xr-theme-toggle__moon {
  display: none;
}

html[data-theme="light"] .xr-theme-toggle__sun {
  display: none;
}

html[data-theme="light"] .xr-theme-toggle__moon {
  display: block;
}

.xr-theme-toggle:focus-visible,
.xr-menu-toggle:focus-visible,
.xr-product-slider__controls button:focus-visible {
  outline: 2px solid var(--xr-accent);
  outline-offset: 3px;
}

.xr-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.xr-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 25px;
  height: 1px;
  margin: 7px auto;
  background: var(--xr-text);
  transition: transform 180ms ease;
}

.xr-home {
  background:
    radial-gradient(circle at 78% 8%, rgba(35, 139, 113, 0.1), transparent 28%),
    var(--xr-bg);
}

.xr-home h1,
.xr-home h2,
.xr-home h3,
.xr-home p {
  margin-top: 0;
}

.xr-home h1,
.xr-home h2,
.xr-home h3 {
  color: var(--xr-text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.xr-eyebrow {
  margin-bottom: 8px;
  color: var(--xr-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.xr-section {
  position: relative;
  padding: 92px 0;
  border-top: 1px solid var(--xr-line-soft);
}

.xr-section-heading {
  margin-bottom: 38px;
}

.xr-section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.xr-section-heading h2::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  margin-top: 14px;
  background: var(--xr-accent);
}

.xr-hero {
  position: relative;
  min-height: 780px;
  height: 100vh;
  max-height: 960px;
  padding-top: 84px;
  overflow: hidden;
  isolation: isolate;
}

.xr-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--xr-bg));
  pointer-events: none;
}

.xr-hero__topology {
  position: absolute;
  inset: 84px 0 0;
  z-index: -3;
  opacity: 0.78;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 22%, rgba(239, 219, 188, 0.13), transparent 24%),
    radial-gradient(circle at 87% 70%, rgba(234, 165, 205, 0.09), transparent 26%),
    radial-gradient(circle at 56% 54%, rgba(86, 229, 189, 0.08), transparent 31%),
    repeating-linear-gradient(8deg, transparent 0 34px, rgba(86, 229, 189, 0.045) 35px, transparent 36px);
  mask-image: linear-gradient(90deg, transparent, #000 32%, #000 94%, transparent);
}

.xr-hero__topology::before,
.xr-hero__topology::after {
  content: "";
  position: absolute;
  width: 76%;
  height: 360px;
  left: 38%;
  border: 1px solid rgba(86, 229, 189, 0.14);
  border-radius: 50%;
  transform: rotate(-8deg) skewX(-12deg);
  box-shadow:
    0 22px 0 -21px rgba(86, 229, 189, 0.2),
    0 52px 0 -51px rgba(239, 219, 188, 0.13),
    0 -34px 0 -33px rgba(234, 165, 205, 0.12);
}

.xr-hero__topology::before {
  top: 22%;
}

.xr-hero__topology::after {
  top: 39%;
  opacity: 0.48;
  transform: rotate(7deg) skewX(14deg);
}

.xr-hero__glow {
  position: absolute;
  z-index: -2;
  width: 56vw;
  height: 54vw;
  right: -19vw;
  top: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 229, 189, 0.12), rgba(3, 7, 6, 0) 68%);
  pointer-events: none;
}

.xr-hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: block;
  padding-bottom: 54px;
}

.xr-hero__copy {
  position: relative;
  z-index: 4;
  padding-top: clamp(76px, 9vh, 112px);
}

.xr-hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(86px, 8.8vw, 138px);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.xr-hero h1 > span {
  display: block;
}

.xr-hero__headline-en {
  white-space: nowrap;
}

.xr-hero__headline-ja {
  margin-top: 40px;
  font-size: 0.45em;
  line-height: 1.12;
  letter-spacing: 0.04em;
}

.xr-hero__mobile-break {
  display: none;
}

.xr-hero__support {
  position: relative;
  z-index: 5;
  width: min(100%, 610px);
  margin-top: clamp(30px, 4vh, 46px);
}

.xr-hero__lead {
  margin-bottom: 50px;
  color: #c5d0cc;
  font-size: 24px;
  line-height: 1.9;
}

.xr-capabilities {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.xr-capability {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit !important;
  text-decoration: none !important;
}

.xr-capability:hover strong,
.xr-capability:focus-visible strong {
  color: var(--xr-accent);
}

.xr-capability svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--xr-accent);
  stroke-width: 1.4;
}

.xr-capability span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.xr-capability strong {
  color: #e7f0ed;
  font-size: 9px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.xr-capability small {
  margin-top: 2px;
  color: var(--xr-muted);
  font-size: 9px;
  line-height: 1.4;
}

.xr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.xr-button {
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  color: var(--xr-text) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none !important;
}

.xr-button span,
.xr-text-link span {
  color: inherit;
  transition: transform 180ms ease;
}

.xr-button:hover span,
.xr-text-link:hover span {
  transform: translateX(4px);
}

.xr-button--primary {
  background: var(--xr-accent);
  color: #03100c !important;
  box-shadow: 0 10px 40px rgba(86, 229, 189, 0.12);
}

.xr-button--primary:hover {
  background: var(--xr-accent-strong);
}

.xr-button--ghost {
  border-color: var(--xr-line);
  background: rgba(3, 7, 6, 0.62);
}

.xr-button--ghost:hover {
  border-color: var(--xr-accent);
  background: rgba(86, 229, 189, 0.07);
}

.xr-hero__visual {
  position: absolute;
  z-index: 6;
  width: 400px;
  height: 300px;
  right: -8%;
  bottom: 120px;
}

.xr-product-slider {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.xr-product-slider__head {
  min-height: 30px;
  padding-bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.xr-product-slider__head p,
.xr-product-slider__counter {
  margin: 0;
  color: #82978f;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.xr-product-slider__counter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.xr-product-slider__counter i {
  width: 30px;
  height: 1px;
  background: var(--xr-line);
}

.xr-product-slider__viewport {
  min-height: 0;
  border: 1px solid rgba(86, 229, 189, 0.34);
  overflow: hidden;
  background: var(--xr-surface);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.xr-product-slider__track {
  height: 100%;
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 620ms cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}

.xr-stage-card {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  border: 1px solid rgba(86, 229, 189, 0.34);
  color: var(--xr-text) !important;
  text-decoration: none !important;
  background: #07100e;
  overflow: hidden;
  transition: border-color 220ms ease;
}

.xr-stage-card:hover,
.xr-stage-card:focus-visible {
  border-color: rgba(86, 229, 189, 0.78);
}

.xr-stage-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2, .8, .2, 1), filter 300ms ease;
}

.xr-stage-card:hover > img {
  transform: scale(1.035);
}

.xr-stage-card--voice {
  border: 0;
}

.xr-stage-card--voice > img {
  object-position: center;
}

.xr-stage-card--favee {
  border: 0;
  background:
    radial-gradient(circle at 72% 34%, rgba(239, 179, 215, 0.54), transparent 34%),
    radial-gradient(circle at 24% 76%, rgba(255, 220, 126, 0.4), transparent 38%),
    #f7f2e9;
}

.xr-stage-card__phones {
  position: absolute;
  inset: 4px 72px 48px;
}

.xr-stage-card__phones img {
  position: absolute;
  width: 56%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(28, 22, 20, 0.2));
  transition: transform 500ms cubic-bezier(.2, .8, .2, 1);
}

.xr-stage-card__phones img:first-child {
  left: 10%;
  top: 10px;
  transform: rotate(-5deg);
}

.xr-stage-card__phones img:last-child {
  right: 10%;
  top: -4px;
  transform: rotate(5deg);
}

.xr-stage-card--favee:hover .xr-stage-card__phones img:first-child {
  transform: rotate(-5deg) translateY(-5px);
}

.xr-stage-card--favee:hover .xr-stage-card__phones img:last-child {
  transform: rotate(5deg) translateY(-8px);
}

.xr-stage-card--3d {
  border: 0;
}

.xr-stage-card--3d > img {
  object-position: 53% center;
}

.xr-stage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(2, 7, 5, 0.94));
  pointer-events: none;
}

.xr-stage-card--favee::after {
  background: linear-gradient(180deg, transparent 50%, rgba(3, 8, 6, 0.96));
}

.xr-stage-card__meta {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
}

.xr-stage-card__meta small {
  margin-bottom: 2px;
  color: var(--xr-accent);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.xr-stage-card__meta strong {
  color: var(--xr-text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.xr-stage-card__meta em {
  margin-top: 2px;
  color: #b7c5c0;
  font-size: 9px;
  font-style: normal;
}

.xr-stage-card--voice .xr-stage-card__meta {
  padding: 15px 18px;
}

.xr-stage-card--voice .xr-stage-card__meta strong {
  font-size: 18px;
}

.xr-product-slider__controls {
  padding-top: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.xr-product-slider__controls button {
  width: 42px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--xr-line);
  color: var(--xr-accent);
  background: rgba(3, 7, 6, 0.72);
  cursor: pointer;
}

.xr-product-slider__controls button:hover,
.xr-product-slider__controls button:focus-visible {
  border-color: var(--xr-accent);
  background: rgba(86, 229, 189, 0.08);
}

.xr-data-panel {
  position: absolute;
  border: 1px solid rgba(86, 229, 189, 0.43);
  background: linear-gradient(145deg, rgba(6, 26, 21, 0.9), rgba(2, 10, 8, 0.78));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48), inset 0 0 45px rgba(86, 229, 189, 0.035);
  backdrop-filter: blur(9px);
  overflow: hidden;
}

.xr-data-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(86, 229, 189, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 229, 189, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.xr-data-panel--main {
  width: 420px;
  height: 238px;
  top: 34px;
  left: 65px;
  transform: rotateY(-9deg) rotateX(2deg);
}

.xr-data-panel--scene {
  width: 330px;
  height: 205px;
  right: -8px;
  top: 210px;
  transform: rotateY(-12deg) rotateX(3deg);
}

.xr-data-panel--radar {
  width: 300px;
  height: 194px;
  left: 112px;
  bottom: 10px;
  transform: rotateY(8deg) rotateX(2deg);
}

.xr-data-panel__bar {
  position: relative;
  z-index: 2;
  height: 34px;
  padding: 0 12px;
  border-bottom: 1px solid var(--xr-line);
  display: flex;
  align-items: center;
  gap: 5px;
}

.xr-data-panel__bar i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--xr-accent);
  opacity: 0.65;
}

.xr-data-panel__bar span,
.xr-data-panel--scene > span,
.xr-data-panel--radar > span {
  color: #8ab9aa;
  font-size: 7px;
  letter-spacing: 0.16em;
}

.xr-data-panel__bar span {
  margin-left: auto;
}

.xr-data-panel__chart {
  position: relative;
  z-index: 2;
  height: 145px;
  padding: 17px 18px 0;
}

.xr-data-panel__chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.xr-data-panel__chart path:not(.fill) {
  fill: none;
  stroke: var(--xr-accent);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 5px rgba(86, 229, 189, 0.7));
}

.xr-data-panel__chart .fill {
  fill: url("#chart-fill");
}

.xr-data-panel__meta {
  position: relative;
  z-index: 2;
  padding: 0 18px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.xr-data-panel__meta span,
.xr-data-panel__meta small {
  color: #80ad9f;
  font-size: 7px;
  letter-spacing: 0.13em;
}

.xr-data-panel__meta b {
  margin-left: auto;
  color: var(--xr-text);
  font-size: 20px;
  font-weight: 400;
}

.xr-data-panel__meta small {
  color: var(--xr-accent);
}

.xr-data-panel--scene,
.xr-data-panel--radar {
  padding: 16px;
}

.xr-scene-grid {
  position: relative;
  z-index: 2;
  height: 145px;
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
  transform: perspective(260px) rotateX(58deg);
}

.xr-scene-grid i {
  border: 1px solid rgba(86, 229, 189, 0.3);
  background: radial-gradient(circle, rgba(86, 229, 189, 0.18), transparent 65%);
}

.xr-radar {
  position: relative;
  z-index: 2;
  width: 112px;
  height: 112px;
  margin: 12px 0 0 10px;
  border: 1px solid rgba(86, 229, 189, 0.35);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 16px, rgba(86, 229, 189, 0.18) 17px 18px);
}

.xr-radar::before,
.xr-radar::after {
  content: "";
  position: absolute;
  background: rgba(86, 229, 189, 0.26);
}

.xr-radar::before {
  width: 100%;
  height: 1px;
  top: 50%;
}

.xr-radar::after {
  width: 1px;
  height: 100%;
  left: 50%;
}

.xr-radar i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--xr-accent);
  box-shadow: 0 0 8px var(--xr-accent);
}

.xr-radar i:nth-child(1) { top: 28px; left: 67px; }
.xr-radar i:nth-child(2) { top: 73px; left: 30px; }
.xr-radar i:nth-child(3) { top: 55px; left: 83px; }

.xr-mini-bars {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 25px;
  height: 72px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.xr-mini-bars b {
  width: 8px;
  background: linear-gradient(180deg, var(--xr-accent), rgba(86, 229, 189, 0.14));
}

.xr-mini-bars b:nth-child(1) { height: 28%; }
.xr-mini-bars b:nth-child(2) { height: 62%; }
.xr-mini-bars b:nth-child(3) { height: 44%; }
.xr-mini-bars b:nth-child(4) { height: 86%; }
.xr-mini-bars b:nth-child(5) { height: 66%; }
.xr-mini-bars b:nth-child(6) { height: 100%; }

.xr-scroll {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 25px;
  color: #bbc8c4 !important;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-decoration: none !important;
  transform: translateX(-50%);
}

.xr-scroll i {
  display: block;
  width: 1px;
  height: 26px;
  margin: 8px auto 0;
  background: linear-gradient(var(--xr-accent), transparent);
  animation: xr-scroll 1.8s ease-in-out infinite;
}

@keyframes xr-scroll {
  0%, 100% { transform: scaleY(0.45); transform-origin: top; opacity: 0.45; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

.xr-strength-grid,
.xr-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.xr-strength-grid {
  gap: 18px;
}

.xr-strength-card {
  min-height: 214px;
  padding: 30px;
  border: 1px solid var(--xr-line);
  background: linear-gradient(145deg, rgba(10, 21, 18, 0.66), rgba(3, 7, 6, 0.4));
}

.xr-strength-card__head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.xr-strength-card__icon {
  width: 58px;
  height: 58px;
  border: 1px solid var(--xr-accent);
  border-radius: 50%;
  color: var(--xr-accent);
  font-size: 22px;
  display: grid;
  place-items: center;
}

.xr-strength-card__head p {
  margin-bottom: 0;
  color: var(--xr-text);
  font-size: 19px;
}

.xr-strength-card__head b {
  margin-right: 12px;
  color: var(--xr-accent);
  font-size: 13px;
  font-weight: 500;
}

.xr-strength-card > p {
  margin: 0 0 0 82px;
  color: var(--xr-muted);
  font-size: 12px;
  line-height: 2;
}

.xr-products {
  background: linear-gradient(180deg, rgba(8, 17, 14, 0.35), transparent);
}

.xr-product-grid {
  gap: 20px;
}

.xr-product-card {
  border: 1px solid var(--xr-line);
  background: rgba(3, 9, 7, 0.62);
}

.xr-product-card__image {
  position: relative;
  height: 240px;
  display: block;
  overflow: hidden;
}

.xr-product-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(2, 7, 5, 0.88));
}

.xr-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
  transition: transform 550ms cubic-bezier(.2, .8, .2, 1), filter 300ms ease;
}

.xr-product-card--voice .xr-product-card__image img {
  object-position: center;
}

.xr-product-card--favee .xr-product-card__image {
  background:
    radial-gradient(circle at 70% 35%, rgba(246, 186, 220, 0.46), transparent 32%),
    radial-gradient(circle at 28% 70%, rgba(255, 220, 126, 0.4), transparent 38%),
    #f7f4ef;
}

.xr-product-card__phones {
  position: absolute;
  inset: 8px 34px 0;
  z-index: 1;
  display: block;
}

.xr-product-card__phones img {
  position: absolute;
  width: 58%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.2));
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.xr-product-card__phones img:first-child {
  left: 1%;
  top: 10px;
  transform: rotate(-4deg);
}

.xr-product-card__phones img:last-child {
  right: 0;
  top: -4px;
  transform: rotate(4deg);
}

.xr-product-card--favee .xr-product-card__image:hover .xr-product-card__phones img:first-child {
  transform: rotate(-4deg) translateY(-4px);
}

.xr-product-card--favee .xr-product-card__image:hover .xr-product-card__phones img:last-child {
  transform: rotate(4deg) translateY(-4px);
}

.xr-product-card--3d .xr-product-card__image img {
  object-position: 50% 45%;
}

.xr-product-card__image:hover img {
  transform: scale(1.035);
  filter: saturate(0.9) contrast(1.04);
}

.xr-product-card__label {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 16px;
  color: var(--xr-accent);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.xr-product-card__body {
  padding: 24px 22px 26px;
}

.xr-product-card h3 {
  margin-bottom: 3px;
  font-size: 23px;
}

.xr-product-card__sub {
  margin-bottom: 14px;
  color: var(--xr-accent);
  font-size: 12px;
}

.xr-product-card__body > p:not(.xr-product-card__sub) {
  min-height: 73px;
  margin-bottom: 15px;
  color: var(--xr-muted);
  font-size: 12px;
  line-height: 1.9;
}

.xr-product-card ul {
  min-height: 55px;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 5px 15px;
  list-style: none;
}

.xr-product-card li {
  color: #c3d2cd;
  font-size: 10px;
}

.xr-product-card li::before {
  content: "✓";
  margin-right: 6px;
  color: var(--xr-accent);
}

.xr-text-link {
  color: var(--xr-accent) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.xr-company__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 66px;
}

.xr-company-table {
  margin-bottom: 24px;
}

.xr-company-table > div {
  min-height: 47px;
  padding: 10px 0;
  border-bottom: 1px solid var(--xr-line-soft);
  display: grid;
  grid-template-columns: 98px 1fr;
  align-items: center;
}

.xr-company-table dt {
  color: var(--xr-accent);
  font-size: 11px;
  font-weight: 500;
}

.xr-company-table dd {
  margin: 0;
  color: #c8d3cf;
  font-size: 12px;
}

.xr-philosophy {
  min-height: 440px;
  padding-left: 48px;
  border-left: 1px solid var(--xr-line);
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 40px;
}

.xr-philosophy__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.xr-philosophy__title .xr-eyebrow {
  align-self: flex-start;
}

.xr-philosophy__title h2 {
  margin-bottom: 32px;
  font-size: 28px;
  align-self: flex-start;
}

.xr-philosophy__title strong {
  color: var(--xr-accent);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.48;
}

.xr-philosophy__title small {
  display: block;
  margin-top: 12px;
  color: var(--xr-accent);
  font-size: 9px;
}

.xr-philosophy__text {
  padding-top: 54px;
}

.xr-philosophy__text p {
  color: #b5c1bd;
  font-size: 12px;
  line-height: 2.1;
}

.xr-news__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.xr-news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 64px;
}

.xr-news-item {
  min-height: 58px;
  border-bottom: 1px solid var(--xr-line-soft);
  display: grid;
  grid-template-columns: 82px 68px 1fr 18px;
  gap: 12px;
  align-items: center;
}

.xr-news-item time {
  color: #98a8a2;
  font-size: 10px;
}

.xr-news-item__category {
  padding: 3px 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #d4dfdb;
  font-size: 8px;
  line-height: 1.4;
  text-align: center;
}

.xr-news-item a {
  color: #d7e0dd !important;
  font-size: 11px;
  line-height: 1.6;
  text-decoration: none !important;
}

.xr-news-item a:hover {
  color: var(--xr-accent) !important;
}

.xr-news-item__arrow {
  color: var(--xr-accent);
}

.xr-news__empty {
  color: var(--xr-muted);
}

.xr-contact-band {
  position: relative;
  padding: 34px 0;
  border-top: 1px solid var(--xr-line-soft);
  overflow: hidden;
}

.xr-contact-band__wave {
  position: absolute;
  inset: 0;
  opacity: 0.44;
  background:
    radial-gradient(ellipse at 12% 110%, transparent 0 38%, rgba(86, 229, 189, 0.35) 38.3% 38.6%, transparent 39%),
    radial-gradient(ellipse at 32% 125%, transparent 0 44%, rgba(86, 229, 189, 0.18) 44.2% 44.5%, transparent 45%),
    linear-gradient(90deg, rgba(86, 229, 189, 0.03), rgba(86, 229, 189, 0.12), rgba(86, 229, 189, 0.03));
}

.xr-contact-band__inner {
  position: relative;
  padding: 22px 32px;
  border: 1px solid var(--xr-line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  background: rgba(3, 10, 8, 0.64);
}

.xr-contact-band h2 {
  margin-bottom: 5px;
  font-size: 25px;
  letter-spacing: 0.06em;
}

.xr-contact-band p {
  margin-bottom: 0;
  color: var(--xr-muted);
  font-size: 11px;
}

.xr-footer {
  padding: 64px 0 28px;
  border-top: 1px solid var(--xr-line-soft);
  background: #020504;
}

.xr-footer__inner {
  width: min(calc(100% - 64px), var(--xr-container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.25fr 2fr 0.9fr;
  gap: 72px;
}

.xr-logo--footer {
  margin-bottom: 18px;
}

.xr-logo--footer img {
  height: 32px;
}

.xr-footer__brand p,
.xr-footer__brand small,
.xr-footer__address,
.xr-footer__address a {
  color: #8e9d98;
  font-size: 10px;
}

.xr-footer__brand small {
  display: block;
  margin-top: 20px;
}

.xr-footer__brand p {
  margin-top: 0;
}

.xr-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.xr-footer__label {
  margin-bottom: 16px;
  color: var(--xr-accent);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.xr-footer__nav a {
  margin-bottom: 6px;
  color: #bac6c2 !important;
  font-size: 10px;
  text-decoration: none !important;
  display: block;
}

.xr-footer__nav a:hover,
.xr-footer__address a:hover {
  color: var(--xr-accent) !important;
}

.xr-footer__address {
  margin: 0;
  padding-left: 36px;
  border-left: 1px solid var(--xr-line-soft);
  font-style: normal;
}

.xr-footer__address p {
  color: #bac6c2;
  font-size: 10px;
}

.xr-footer__address a {
  color: #bac6c2;
  text-decoration: none;
}

.xr-home .ui-to-top {
  border: 1px solid var(--xr-line);
  background: rgba(3, 7, 6, 0.86);
  color: var(--xr-accent);
}

#trp-floater-ls.trp-language-switcher-container {
  height: 40px;
}

#trp-floater-ls.trp-language-switcher-container {
  min-width: 0 !important;
  max-width: 130px;
  right: 16px !important;
  bottom: 16px !important;
  border: 1px solid var(--xr-line) !important;
  border-radius: 0 !important;
  background: rgba(3, 7, 6, 0.9) !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}

#trp-floater-ls #trp-floater-ls-current-language a {
  padding: 6px 9px !important;
  color: #c5d0cc !important;
  font-size: 9px !important;
  line-height: 1.4 !important;
}

#trp-floater-ls #trp-floater-ls-language-list {
  min-width: 0 !important;
  max-width: 130px !important;
  border: 1px solid var(--xr-line) !important;
  border-bottom: 0 !important;
  border-radius: 0 !important;
  background: rgba(3, 7, 6, 0.96) !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}

#trp-floater-ls #trp-floater-ls-language-list .trp-language-wrap {
  padding: 0 !important;
}

#trp-floater-ls #trp-floater-ls-language-list a {
  padding: 12px 8px !important;
  color: #c5d0cc !important;
  font-size: 9px !important;
  line-height: 1.4 !important;
  border-bottom: 1px solid var(--xr-line-soft) !important;
}

#trp-floater-ls #trp-floater-ls-language-list a:hover {
  color: var(--xr-accent) !important;
  background: rgba(86, 229, 189, 0.08) !important;
}

#trp-floater-ls .trp-flag-image {
  width: 16px !important;
  height: auto !important;
  margin: 0 6px 0 0 !important;
}

#trp-floater-ls .trp-floater-ls-disabled-language {
  margin-top: 0;
}

.xr-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .8, .2, 1);
}

.xr-reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body:not(.home):not(.front-page) #main-content {
  padding-top: 0;
  background: var(--xr-bg);
  color: var(--xr-text);
}

body.single-post {
  padding-top: 0 !important;
}

#contact.xr-contact-page {
  padding-top: 0 !important;
}

.xr-subpage {
  min-height: 100vh;
  color: var(--xr-text);
  background:
    radial-gradient(circle at 82% 5%, rgba(35, 139, 113, 0.1), transparent 25%),
    var(--xr-bg);
}

.xr-subpage h1,
.xr-subpage h2,
.xr-subpage h3,
.xr-subpage h4,
.xr-subpage h5,
.xr-subpage h6 {
  color: var(--xr-text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.xr-page-hero {
  position: relative;
  min-height: 560px;
  border-bottom: 1px solid var(--xr-line-soft);
  overflow: hidden;
  isolation: isolate;
}

.xr-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(3, 7, 6, 0.72));
}

.xr-page-hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 40%, rgba(86, 229, 189, 0.09), transparent 24%),
    radial-gradient(circle at 91% 72%, rgba(239, 219, 188, 0.06), transparent 22%),
    repeating-linear-gradient(8deg, transparent 0 37px, rgba(86, 229, 189, 0.035) 38px, transparent 39px);
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000);
}

.xr-page-hero__backdrop::before,
.xr-page-hero__backdrop::after {
  content: "";
  position: absolute;
  width: 62%;
  height: 290px;
  left: 48%;
  border: 1px solid rgba(86, 229, 189, 0.12);
  border-radius: 50%;
  transform: rotate(-8deg) skewX(-12deg);
}

.xr-page-hero__backdrop::before {
  top: 24%;
}

.xr-page-hero__backdrop::after {
  top: 42%;
  opacity: 0.5;
  transform: rotate(7deg) skewX(14deg);
}

.xr-page-hero__inner {
  min-height: 560px;
  padding-top: 132px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 80px;
  align-items: center;
}

.xr-page-hero__copy {
  max-width: 760px;
}

.xr-page-hero__copy h1,
.xr-article-hero__copy h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.xr-page-hero__copy > p:last-child {
  max-width: 650px;
  margin: 26px 0 0;
  color: #bdcac6;
  font-size: 15px;
  line-height: 2;
}

.xr-page-hero__visual {
  position: relative;
  min-height: 280px;
  padding: 38px;
  border: 1px solid var(--xr-line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(7, 16, 14, 0.48);
  overflow: hidden;
}

.xr-page-hero__visual::before,
.xr-page-hero__visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(86, 229, 189, 0.19);
  transform: rotate(30deg);
}

.xr-page-hero__visual::before {
  width: 210px;
  height: 210px;
  top: -92px;
  right: -52px;
}

.xr-page-hero__visual::after {
  width: 120px;
  height: 120px;
  top: 42px;
  right: 52px;
}

.xr-page-hero__visual span {
  position: relative;
  z-index: 1;
  padding: 8px 0;
  border-bottom: 1px solid var(--xr-line-soft);
  color: #8fa49d;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.xr-page-hero__visual b {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  color: var(--xr-text);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.xr-page-hero__visual--contact::after {
  border-radius: 50%;
}

.xr-page-hero__visual--3d::after {
  transform: rotate(60deg) skewY(-18deg);
}

.xr-subpage-section {
  position: relative;
  padding: 112px 0 132px;
}

/* News archive page */
.xr-page-hero__visual--news::after {
  transform: rotate(45deg) skewX(-10deg);
}

.xr-news-archive {
  max-width: 980px;
}

.xr-news-list--archive {
  display: block;
  border-top: 1px solid var(--xr-line-soft);
}

.xr-news-list--archive .xr-news-item {
  min-height: 72px;
  padding: 18px 4px;
  grid-template-columns: 104px 88px 1fr 18px;
  gap: 24px;
}

.xr-news-list--archive .xr-news-item time {
  font-size: 12px;
}

.xr-news-list--archive .xr-news-item a {
  font-size: 14px;
}

.xr-pagination {
  margin-top: 56px;
}

.xr-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.xr-pagination .page-numbers .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 6px;
  border: 1px solid var(--xr-line-soft);
  color: #c5d0cc;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.xr-pagination .page-numbers a.page-numbers:hover {
  color: var(--xr-accent);
  border-color: var(--xr-accent);
  background: rgba(86, 229, 189, 0.08);
}

.xr-pagination .page-numbers .page-numbers.current {
  color: var(--xr-bg);
  background: var(--xr-accent);
  border-color: var(--xr-accent);
}

.xr-pagination .page-numbers .page-numbers.dots {
  border-color: transparent;
}

@media (max-width: 767px) {
  .xr-news-list--archive .xr-news-item {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "time category"
      "title title";
    gap: 8px 12px;
    padding: 16px 2px;
  }

  .xr-news-list--archive .xr-news-item time {
    grid-area: time;
  }

  .xr-news-list--archive .xr-news-item .xr-news-item__category {
    grid-area: category;
    justify-self: start;
  }

  .xr-news-list--archive .xr-news-item a {
    grid-area: title;
  }

  .xr-news-list--archive .xr-news-item__arrow {
    display: none;
  }
}

.xr-contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  gap: clamp(56px, 8vw, 116px);
  align-items: start;
}

.xr-contact-intro {
  position: sticky;
  top: 124px;
}

.xr-contact-intro h2,
.xr-showrooms-intro h2 {
  margin: 0 0 26px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.55;
}

.xr-contact-intro > p:not(.xr-eyebrow),
.xr-showrooms-intro > p:not(.xr-eyebrow) {
  margin: 0;
  color: #aebdb8;
  font-size: 13px;
  line-height: 2;
}

.xr-contact-topics {
  margin: 44px 0 0;
  padding: 0;
  border-top: 1px solid var(--xr-line-soft);
  list-style: none;
}

.xr-contact-topics li {
  padding: 16px 0;
  border-bottom: 1px solid var(--xr-line-soft);
  color: #d6e0dc;
  font-size: 11px;
}

.xr-contact-topics span {
  margin-right: 16px;
  color: var(--xr-accent);
  font-size: 8px;
}

.xr-contact-direct {
  margin-top: 44px;
}

.xr-contact-direct small {
  display: block;
  margin-bottom: 8px;
  color: #789087;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.xr-contact-direct a {
  color: var(--xr-accent) !important;
  font-size: 12px;
  text-decoration: none !important;
}

.xr-contact-direct a span {
  display: inline-block;
  margin-left: 8px;
}

.xr-contact-direct a .xr-mail__text {
  margin-left: 0;
}

.xr-contact-form-shell {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--xr-line);
  background:
    linear-gradient(145deg, rgba(10, 21, 18, 0.84), rgba(4, 10, 8, 0.92));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.22);
}

.xr-contact-form-head {
  margin-bottom: 42px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--xr-line-soft);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.xr-contact-form-head p,
.xr-contact-form-head small {
  margin: 0;
}

.xr-contact-form-head p {
  display: flex;
  gap: 16px;
  align-items: center;
}

.xr-contact-form-head span {
  color: var(--xr-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.xr-contact-form-head b,
.xr-contact-form-head small {
  color: #789087;
  font-size: 8px;
  font-weight: 400;
}

.xr-contact-content .wpcf7-form > p {
  margin: 0 0 27px;
}

.xr-contact-content .wpcf7-form > p:last-of-type {
  margin: 36px 0 0;
}

.xr-contact-content label {
  width: 100%;
  margin: 0;
  color: #dce6e2;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.xr-contact-content input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.xr-contact-content select,
.xr-contact-content textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: 0;
  color: var(--xr-text);
  background: transparent;
  font-size: 14px;
  line-height: 1.7;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.xr-contact-content textarea {
  height: 190px;
  min-height: 150px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  resize: vertical;
}

.xr-contact-content input:focus,
.xr-contact-content select:focus,
.xr-contact-content textarea:focus {
  border-color: var(--xr-accent) !important;
  background: rgba(86, 229, 189, 0.025);
}

.xr-contact-content input[type="submit"],
.xr-contact-content button[type="submit"] {
  width: auto !important;
  min-width: 210px;
  min-height: 52px;
  padding: 14px 26px;
  border: 1px solid var(--xr-accent);
  border-radius: 0;
  color: #03100c;
  background: var(--xr-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.xr-contact-content input[type="submit"]:hover,
.xr-contact-content button[type="submit"]:hover {
  background: var(--xr-accent-strong);
}

.xr-contact-content .wpcf7-not-valid-tip {
  margin-top: 5px;
  color: #ffaaa0;
  font-size: 10px;
}

.xr-contact-content .wpcf7-response-output {
  margin: 28px 0 0 !important;
  padding: 14px 16px !important;
  border: 1px solid var(--xr-line) !important;
  color: #d6e0dc;
  font-size: 11px;
}

.xr-contact-content .wpcf7-spinner {
  background-color: var(--xr-accent);
}

.xr-article-hero {
  min-height: 590px;
}

.xr-article-hero__inner {
  min-height: 590px;
  padding-top: 132px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  gap: 88px;
  align-items: center;
}

.xr-article-meta {
  margin-bottom: 28px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.xr-article-meta span {
  padding: 5px 9px;
  border: 1px solid var(--xr-line);
  color: var(--xr-accent);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.xr-article-meta time {
  color: #8fa19b;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.xr-article-hero__copy h1 {
  max-width: 800px;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.45;
}

.xr-article-hero__image,
.xr-article-hero__graphic {
  position: relative;
  height: 330px;
  margin: 0;
  border: 1px solid var(--xr-line);
  overflow: hidden;
  background: var(--xr-surface);
}

.xr-article-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
}

.xr-article-hero__graphic {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(rgba(86, 229, 189, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 229, 189, 0.075) 1px, transparent 1px),
    rgba(7, 16, 14, 0.82);
  background-size: 28px 28px;
}

.xr-article-hero__graphic span {
  color: #8fa49d;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.xr-article-hero__graphic b {
  align-self: flex-end;
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 150px;
  font-weight: 400;
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(86, 229, 189, 0.34);
}

.xr-article-hero__graphic i {
  width: 42%;
  height: 1px;
  background: var(--xr-accent);
}

.xr-article-section {
  padding-top: 104px;
}

.xr-article-layout {
  display: grid;
  grid-template-columns: 170px minmax(0, 780px);
  gap: clamp(56px, 8vw, 110px);
  justify-content: center;
  align-items: start;
}

.xr-article-rail {
  position: sticky;
  top: 124px;
  padding-top: 4px;
}

.xr-article-rail p {
  margin: 0 0 4px;
  color: #71867f;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.xr-article-rail time,
.xr-article-rail > span {
  display: block;
  margin-bottom: 26px;
  color: #cad6d2;
  font-size: 10px;
}

.xr-article-rail a {
  padding-top: 22px;
  border-top: 1px solid var(--xr-line-soft);
  color: var(--xr-accent) !important;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  text-decoration: none !important;
}

.xr-entry-content {
  color: #c5d1cd;
  font-size: 15px;
  line-height: 2.1;
}

.xr-entry-content > *:first-child {
  margin-top: 0;
}

.xr-entry-content > *:last-child {
  margin-bottom: 0;
}

.xr-entry-content p {
  margin: 0 0 1.8em;
}

.xr-entry-content h2,
.xr-entry-content h3,
.xr-entry-content h4 {
  scroll-margin-top: 110px;
}

.xr-entry-content h2 {
  margin: 3em 0 1em;
  padding: 0 0 15px;
  border-bottom: 1px solid var(--xr-line);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.55;
}

.xr-entry-content h3 {
  margin: 2.5em 0 0.9em;
  padding-left: 16px;
  border-left: 1px solid var(--xr-accent);
  font-size: 21px;
  line-height: 1.6;
}

.xr-entry-content h4 {
  margin: 2em 0 0.7em;
  font-size: 17px;
}

.xr-entry-content a {
  color: var(--xr-accent) !important;
  text-decoration-color: rgba(86, 229, 189, 0.45);
  text-underline-offset: 4px;
}

.xr-entry-content ul,
.xr-entry-content ol {
  margin: 0 0 2em;
  padding-left: 1.4em;
}

.xr-entry-content li {
  margin-bottom: 0.55em;
}

.xr-entry-content li::marker {
  color: var(--xr-accent);
}

.xr-entry-content blockquote {
  margin: 2.4em 0;
  padding: 24px 28px;
  border-left: 2px solid var(--xr-accent);
  color: #e0e8e5;
  background: rgba(86, 229, 189, 0.045);
}

.xr-entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.xr-entry-content img {
  max-width: 100%;
  height: auto;
}

.xr-entry-content figure {
  margin: 2.8em 0;
}

.xr-entry-content figcaption {
  margin-top: 9px;
  color: #80938c;
  font-size: 10px;
}

.xr-entry-content table {
  width: 100%;
  margin: 2.4em 0;
  border-collapse: collapse;
  font-size: 12px;
}

.xr-entry-content th,
.xr-entry-content td {
  padding: 13px 14px;
  border: 1px solid var(--xr-line-soft);
  text-align: left;
}

.xr-entry-content th {
  color: var(--xr-text);
  background: var(--xr-surface-2);
}

.xr-entry-content hr {
  margin: 3em 0;
  border-color: var(--xr-line-soft);
}

.xr-post-navigation {
  margin-top: 92px;
  border-top: 1px solid var(--xr-line-soft);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.xr-post-navigation a {
  min-height: 142px;
  padding: 26px 22px;
  color: var(--xr-text) !important;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  text-decoration: none !important;
}

.xr-post-navigation a + a {
  border-left: 1px solid var(--xr-line-soft);
  text-align: right;
}

.xr-post-navigation a:only-child {
  grid-column: 1 / -1;
}

.xr-post-navigation small {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--xr-accent);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.xr-post-navigation strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xr-post-navigation span {
  color: var(--xr-accent);
}

.xr-standard-content {
  width: min(calc(100% - 64px), 900px);
}

.xr-standard-content > .xr-entry-content {
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid var(--xr-line-soft);
  background: rgba(7, 16, 14, 0.52);
}

.xr-showrooms-intro {
  max-width: 720px;
  margin-bottom: 72px;
}

.xr-showroom-list {
  display: grid;
  gap: 72px;
}

.xr-showroom {
  border: 1px solid var(--xr-line);
  background: var(--xr-surface);
}

.xr-showroom__head {
  padding: 26px 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.xr-showroom__head p,
.xr-showroom__head h2 {
  margin: 0;
}

.xr-showroom__head p {
  color: var(--xr-accent);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.xr-showroom__head h2 {
  font-size: 22px;
}

.xr-showroom iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #020504;
}

.xr-showrooms-empty {
  padding: 54px;
  border: 1px solid var(--xr-line-soft);
  color: var(--xr-muted);
  text-align: center;
}

@media (max-width: 1199px) {
  .xr-nav {
    gap: 30px;
  }

  .xr-hero__inner {
    display: block;
  }

  .xr-hero h1 {
    font-size: clamp(82px, 9vw, 112px);
  }

  .xr-hero__visual {
    width: 470px;
    right: 0;
  }

  .xr-capabilities {
    gap: 18px;
  }

  .xr-strength-card {
    padding: 24px;
  }

  .xr-strength-card > p {
    margin-left: 0;
  }

  .xr-page-hero__inner,
  .xr-article-hero__inner {
    gap: 48px;
  }

  .xr-contact-layout {
    gap: 64px;
  }
}

@media (max-width: 991px) {
  .xr-header,
  .xr-header__inner {
    height: 72px;
  }

  .xr-header__inner,
  .xr-container,
  .xr-footer__inner {
    width: min(calc(100% - 40px), var(--xr-container));
  }

  .xr-menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .xr-menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .xr-menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .xr-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    padding: 96px 32px 48px;
    background: rgba(3, 7, 6, 0.98);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .xr-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .xr-nav > a {
    padding: 17px 0;
    border-bottom: 1px solid var(--xr-line-soft);
    font-size: 15px;
  }

  .xr-nav .xr-nav__contact {
    margin-top: 24px;
    padding: 15px 18px;
  }

  .xr-nav .xr-theme-toggle {
    width: 100%;
    height: auto;
    min-height: 54px;
    padding: 17px 0;
    border-width: 0 0 1px;
    justify-content: flex-start;
    font-size: 12px;
  }

  .xr-hero {
    min-height: auto;
    height: auto;
    max-height: none;
    padding-top: 72px;
  }

  .xr-hero__topology {
    inset: 72px 0 0;
    height: 100%;
    opacity: 0.58;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 94%, transparent);
  }

  .xr-hero__inner {
    min-height: 0;
    padding-top: 82px;
    padding-bottom: 86px;
  }

  .xr-hero__copy {
    position: relative;
    z-index: 5;
    max-width: none;
    padding-top: 0;
  }

  .xr-hero h1 {
    font-size: clamp(68px, 10vw, 88px);
  }

  .xr-hero__support {
    width: min(100%, 620px);
    margin-top: 34px;
  }

  .xr-hero__visual {
    position: relative;
    width: min(100%, 540px);
    height: 350px;
    right: auto;
    bottom: auto;
    margin: 42px 0 0 auto;
  }

  .xr-scroll {
    display: none;
  }

  .xr-strength-grid,
  .xr-product-grid {
    grid-template-columns: 1fr;
  }

  .xr-strength-card {
    min-height: 0;
  }

  .xr-product-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  }

  .xr-product-card__image {
    height: 100%;
    min-height: 330px;
  }

  .xr-company__grid {
    grid-template-columns: 1fr;
  }

  .xr-philosophy {
    padding: 42px 0 0;
    border-top: 1px solid var(--xr-line);
    border-left: 0;
  }

  .xr-news-list {
    grid-template-columns: 1fr;
  }

  .xr-contact-band__inner {
    justify-content: space-between;
    gap: 28px;
  }

  .xr-footer__inner {
    grid-template-columns: 1fr 1.8fr;
  }

  .xr-footer__address {
    grid-column: 1 / -1;
    padding: 24px 0 0;
    border-top: 1px solid var(--xr-line-soft);
    border-left: 0;
  }

  body:not(.home):not(.front-page) #main-content {
    padding-top: 0;
  }

  .xr-page-hero,
  .xr-article-hero {
    min-height: auto;
  }

  .xr-page-hero__inner,
  .xr-article-hero__inner {
    min-height: auto;
    padding-top: 142px;
    padding-bottom: 76px;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .xr-page-hero__visual {
    width: min(100%, 620px);
    min-height: 230px;
  }

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

  .xr-contact-intro {
    position: static;
    max-width: 680px;
  }

  .xr-contact-topics {
    max-width: 580px;
  }

  .xr-article-hero__image,
  .xr-article-hero__graphic {
    width: min(100%, 620px);
    height: 280px;
  }

  .xr-article-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .xr-article-rail {
    position: static;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--xr-line-soft);
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    gap: 8px 14px;
    align-items: center;
  }

  .xr-article-rail p,
  .xr-article-rail time,
  .xr-article-rail > span {
    margin: 0;
  }

  .xr-article-rail a {
    padding: 0;
    border-top: 0;
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .xr-header__inner,
  .xr-container,
  .xr-footer__inner {
    width: min(calc(100% - 32px), var(--xr-container));
  }

  .xr-logo img {
    height: 30px;
  }

  .xr-section {
    padding: 68px 0;
  }

  .xr-section-heading {
    margin-bottom: 28px;
  }

  .xr-hero__inner {
    min-height: 0;
    padding-top: 56px;
    padding-bottom: 64px;
    align-items: start;
  }

  .xr-hero h1 {
    margin: 0;
    /* font-size: clamp(52px, 15.2vw, 62px); */
    font-size: clamp(52px, 20.2vw, 75px);
    line-height: 0.88;
    letter-spacing: -0.065em;
  }

  .xr-hero__headline-en {
    white-space: normal;
    line-height: 1.1;
  }

  .xr-hero__headline-ja {
    margin-top: 16px;
    font-size: clamp(32px, 9.2vw, 36px);
    line-height: 1.2;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .xr-hero__mobile-break {
    display: inline;
  }

  .xr-hero__support {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .xr-hero__lead {
    margin-bottom: 30px;
    font-size: 13px;
  }

  .xr-pc {
    display: none;
  }

  .xr-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
  }

  .xr-capability {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .xr-capability span {
    align-items: center;
  }

  .xr-capability svg {
    width: 31px;
    height: 31px;
    margin-bottom: 7px;
  }

  .xr-capability strong {
    font-size: 6px;
    line-height: 1.45;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .xr-capability small {
    display: none;
  }

  .xr-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .xr-button {
    width: 100%;
  }

  .xr-hero__visual {
    width: 100%;
    height: 300px;
    right: auto;
    bottom: auto;
    margin-top: 32px;
  }

  .xr-stage-card__phones {
    inset: 0 32px 44px;
  }

  .xr-stage-card__meta,
  .xr-stage-card--voice .xr-stage-card__meta {
    padding: 12px;
  }

  .xr-stage-card__meta strong,
  .xr-stage-card--voice .xr-stage-card__meta strong {
    font-size: 15px;
  }

  .xr-stage-card__meta em {
    display: none;
  }

  .xr-product-slider__controls button {
    width: 48px;
    height: 38px;
  }

  .xr-strength-card__head {
    gap: 17px;
  }

  .xr-strength-card__icon {
    width: 50px;
    height: 50px;
  }

  .xr-product-card {
    display: block;
  }

  .xr-product-card__image {
    height: 225px;
    min-height: 0;
  }

  .xr-product-card__body > p:not(.xr-product-card__sub),
  .xr-product-card ul {
    min-height: 0;
  }

  .xr-company__grid {
    gap: 56px;
  }

  .xr-company-table > div {
    grid-template-columns: 78px 1fr;
    gap: 10px;
  }

  .xr-philosophy {
    grid-template-columns: 100px 1fr;
    gap: 22px;
  }

  .xr-philosophy__title h2 {
    font-size: 22px;
    max-width: 75px;
    align-self: flex-start;
  }

  .xr-philosophy__title strong {
    font-size: 34px;
  }

  .xr-philosophy__text {
    padding-top: 47px;
  }

  .xr-news__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .xr-news-item {
    padding: 13px 0;
    grid-template-columns: 74px 58px 1fr 14px;
    gap: 7px;
  }

  .xr-news-item a {
    font-size: 10px;
  }

  .xr-contact-band__inner {
    padding: 24px 20px;
    align-items: stretch;
    flex-direction: column;
  }

  .xr-contact-band h2 {
    font-size: 21px;
    line-height: 1.6;
  }

  .xr-footer__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .xr-footer__nav {
    gap: 16px;
  }

  .xr-footer__address {
    grid-column: auto;
  }

  .xr-page-hero__inner,
  .xr-article-hero__inner {
    padding-top: 122px;
    padding-bottom: 58px;
    gap: 34px;
  }

  .xr-page-hero__copy h1,
  .xr-article-hero__copy h1 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.42;
  }

  .xr-page-hero__copy > p:last-child {
    margin-top: 20px;
    font-size: 13px;
  }

  .xr-page-hero__visual {
    min-height: 205px;
    padding: 25px;
  }

  .xr-page-hero__visual b {
    margin-top: 20px;
    font-size: 14px;
  }

  .xr-subpage-section {
    padding: 72px 0 86px;
  }

  .xr-contact-intro h2,
  .xr-showrooms-intro h2 {
    font-size: 27px;
  }

  .xr-contact-form-shell {
    padding: 24px 20px;
  }

  .xr-contact-form-head {
    margin-bottom: 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .xr-contact-content input[type="submit"],
  .xr-contact-content button[type="submit"] {
    width: 100% !important;
  }

  .xr-article-meta {
    margin-bottom: 20px;
  }

  .xr-article-hero__image,
  .xr-article-hero__graphic {
    height: 220px;
  }

  .xr-article-hero__graphic b {
    font-size: 105px;
  }

  .xr-article-section {
    padding-top: 68px;
  }

  .xr-article-layout {
    gap: 38px;
  }

  .xr-article-rail {
    grid-template-columns: auto 1fr;
  }

  .xr-article-rail a {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--xr-line-soft);
  }

  .xr-entry-content {
    font-size: 14px;
    line-height: 2;
    overflow-wrap: anywhere;
  }

  .xr-entry-content h2 {
    font-size: 23px;
  }

  .xr-entry-content h3 {
    font-size: 19px;
  }

  .xr-entry-content .wp-block-table {
    overflow-x: auto;
  }

  .xr-post-navigation {
    margin-top: 64px;
    grid-template-columns: 1fr;
  }

  .xr-post-navigation a + a {
    border-top: 1px solid var(--xr-line-soft);
    border-left: 0;
  }

  .xr-standard-content {
    width: min(calc(100% - 32px), 900px);
  }

  .xr-standard-content > .xr-entry-content {
    padding: 26px 20px;
  }

  .xr-showrooms-intro {
    margin-bottom: 48px;
  }

  .xr-showroom-list {
    gap: 46px;
  }

  .xr-showroom__head {
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .xr-showroom__head h2 {
    font-size: 19px;
  }

  #trp-floater-ls #trp-floater-ls-current-language a {
    height: 100%;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Light theme */
html[data-theme="light"] .xr-header {
  background: linear-gradient(180deg, rgba(242, 246, 244, 0.96), rgba(242, 246, 244, 0.72));
}

html[data-theme="light"] .xr-header.is-scrolled {
  background: rgba(242, 246, 244, 0.94);
  box-shadow: 0 10px 36px rgba(11, 37, 30, 0.06);
}

html[data-theme="light"] .xr-nav > a {
  color: #18302a;
}

html[data-theme="light"] .xr-nav .xr-nav__contact:hover,
html[data-theme="light"] .xr-theme-toggle:hover,
html[data-theme="light"] .xr-theme-toggle:focus-visible,
html[data-theme="light"] .xr-product-slider__controls button:hover,
html[data-theme="light"] .xr-product-slider__controls button:focus-visible,
html[data-theme="light"] .xr-pagination .page-numbers a.page-numbers:hover,
html[data-theme="light"] #trp-floater-ls #trp-floater-ls-language-list a:hover {
  background: rgba(0, 123, 97, 0.08) !important;
}

html[data-theme="light"] .xr-home {
  background:
    radial-gradient(circle at 78% 8%, rgba(0, 123, 97, 0.1), transparent 28%),
    var(--xr-bg);
}

html[data-theme="light"] .xr-hero__topology {
  opacity: 0.72;
  background:
    radial-gradient(circle at 77% 22%, rgba(222, 170, 94, 0.16), transparent 24%),
    radial-gradient(circle at 87% 70%, rgba(190, 89, 147, 0.09), transparent 26%),
    radial-gradient(circle at 56% 54%, rgba(0, 123, 97, 0.09), transparent 31%),
    repeating-linear-gradient(8deg, transparent 0 34px, rgba(0, 105, 81, 0.07) 35px, transparent 36px);
}

html[data-theme="light"] .xr-hero__topology::before,
html[data-theme="light"] .xr-hero__topology::after {
  border-color: rgba(0, 123, 97, 0.2);
  box-shadow:
    0 22px 0 -21px rgba(0, 123, 97, 0.25),
    0 52px 0 -51px rgba(180, 126, 45, 0.16),
    0 -34px 0 -33px rgba(180, 72, 135, 0.13);
}

html[data-theme="light"] .xr-hero__glow {
  background: radial-gradient(circle, rgba(0, 123, 97, 0.13), rgba(242, 246, 244, 0) 68%);
}

html[data-theme="light"] .xr-hero__lead,
html[data-theme="light"] .xr-page-hero__copy > p:last-child,
html[data-theme="light"] .xr-entry-content {
  color: #334a43;
}

html[data-theme="light"] .xr-capability strong,
html[data-theme="light"] .xr-strength-card__head p {
  color: var(--xr-text);
}

html[data-theme="light"] .xr-button--primary,
html[data-theme="light"] .xr-contact-content input[type="submit"],
html[data-theme="light"] .xr-contact-content button[type="submit"] {
  color: #ffffff !important;
  box-shadow: 0 12px 34px rgba(0, 105, 81, 0.16);
}

html[data-theme="light"] .xr-button--ghost {
  background: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .xr-product-slider__head p,
html[data-theme="light"] .xr-product-slider__counter,
html[data-theme="light"] .xr-contact-direct small,
html[data-theme="light"] .xr-contact-form-head b,
html[data-theme="light"] .xr-contact-form-head small,
html[data-theme="light"] .xr-article-meta time,
html[data-theme="light"] .xr-article-rail p,
html[data-theme="light"] .xr-entry-content figcaption {
  color: #647972;
}

html[data-theme="light"] .xr-product-slider__viewport {
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(22, 54, 45, 0.16);
}

html[data-theme="light"] .xr-product-slider__controls button {
  background: rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .xr-stage-card__meta strong {
  color: #ffffff;
}

html[data-theme="light"] .xr-stage-card__meta em {
  color: #dce8e4;
}

html[data-theme="light"] .xr-strength-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(231, 238, 235, 0.62));
  box-shadow: 0 18px 50px rgba(22, 54, 45, 0.05);
}

html[data-theme="light"] .xr-products {
  background: linear-gradient(180deg, rgba(220, 231, 226, 0.55), transparent);
}

html[data-theme="light"] .xr-product-card {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 60px rgba(22, 54, 45, 0.06);
}

html[data-theme="light"] .xr-product-card li,
html[data-theme="light"] .xr-company-table dd,
html[data-theme="light"] .xr-philosophy__text p,
html[data-theme="light"] .xr-contact-intro > p:not(.xr-eyebrow),
html[data-theme="light"] .xr-showrooms-intro > p:not(.xr-eyebrow),
html[data-theme="light"] .xr-contact-topics li,
html[data-theme="light"] .xr-contact-content label,
html[data-theme="light"] .xr-contact-content .wpcf7-response-output,
html[data-theme="light"] .xr-article-rail time,
html[data-theme="light"] .xr-article-rail > span {
  color: #40564f;
}

html[data-theme="light"] .xr-news-item time {
  color: #61756e;
}

html[data-theme="light"] .xr-news-item__category {
  border-color: rgba(11, 37, 30, 0.24);
  color: #354c45;
}

html[data-theme="light"] .xr-news-item a {
  color: #18302a !important;
}

html[data-theme="light"] .xr-contact-band__inner {
  background: rgba(255, 255, 255, 0.78);
}

html[data-theme="light"] .xr-footer {
  background: #e7eeeb;
}

html[data-theme="light"] .xr-footer__brand p,
html[data-theme="light"] .xr-footer__brand small,
html[data-theme="light"] .xr-footer__address,
html[data-theme="light"] .xr-footer__address a {
  color: #536861;
}

html[data-theme="light"] .xr-footer__nav a,
html[data-theme="light"] .xr-footer__address p,
html[data-theme="light"] .xr-footer__address a {
  color: #2f4740 !important;
}

html[data-theme="light"] .xr-home .ui-to-top {
  background: rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] #trp-floater-ls.trp-language-switcher-container,
html[data-theme="light"] #trp-floater-ls #trp-floater-ls-language-list {
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 12px 34px rgba(22, 54, 45, 0.1) !important;
}

html[data-theme="light"] #trp-floater-ls #trp-floater-ls-current-language a,
html[data-theme="light"] #trp-floater-ls #trp-floater-ls-language-list a {
  color: #334a43 !important;
}

html[data-theme="light"] .xr-subpage {
  background:
    radial-gradient(circle at 82% 5%, rgba(0, 123, 97, 0.09), transparent 25%),
    var(--xr-bg);
}

html[data-theme="light"] .xr-page-hero::after {
  background: linear-gradient(180deg, transparent, rgba(242, 246, 244, 0.78));
}

html[data-theme="light"] .xr-page-hero__backdrop {
  background:
    radial-gradient(circle at 76% 40%, rgba(0, 123, 97, 0.1), transparent 24%),
    radial-gradient(circle at 91% 72%, rgba(180, 126, 45, 0.08), transparent 22%),
    repeating-linear-gradient(8deg, transparent 0 37px, rgba(0, 105, 81, 0.055) 38px, transparent 39px);
}

html[data-theme="light"] .xr-page-hero__backdrop::before,
html[data-theme="light"] .xr-page-hero__backdrop::after,
html[data-theme="light"] .xr-page-hero__visual::before,
html[data-theme="light"] .xr-page-hero__visual::after {
  border-color: rgba(0, 123, 97, 0.2);
}

html[data-theme="light"] .xr-page-hero__visual {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(22, 54, 45, 0.07);
}

html[data-theme="light"] .xr-page-hero__visual span,
html[data-theme="light"] .xr-article-hero__graphic span {
  color: #5d746c;
}

html[data-theme="light"] .xr-contact-form-shell {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(231, 238, 235, 0.9));
  box-shadow: 0 40px 100px rgba(22, 54, 45, 0.1);
}

html[data-theme="light"] .xr-contact-content input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
html[data-theme="light"] .xr-contact-content select,
html[data-theme="light"] .xr-contact-content textarea {
  border-color: rgba(11, 37, 30, 0.24);
}

html[data-theme="light"] .xr-contact-content input:focus,
html[data-theme="light"] .xr-contact-content select:focus,
html[data-theme="light"] .xr-contact-content textarea:focus {
  background: rgba(0, 123, 97, 0.035);
}

html[data-theme="light"] .xr-contact-content .wpcf7-not-valid-tip {
  color: #a52b20;
}

html[data-theme="light"] .xr-article-hero__image,
html[data-theme="light"] .xr-article-hero__graphic {
  background: #ffffff;
}

html[data-theme="light"] .xr-article-hero__graphic {
  background:
    linear-gradient(rgba(0, 123, 97, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 123, 97, 0.09) 1px, transparent 1px),
    rgba(255, 255, 255, 0.84);
  background-size: 28px 28px;
}

html[data-theme="light"] .xr-entry-content blockquote {
  color: #203830;
  background: rgba(0, 123, 97, 0.06);
}

html[data-theme="light"] .xr-standard-content > .xr-entry-content {
  background: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .xr-showroom {
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(22, 54, 45, 0.07);
}

html[data-theme="light"] .xr-pagination .page-numbers .page-numbers {
  color: #334a43;
}

html[data-theme="light"] .xr-pagination .page-numbers .page-numbers.current {
  color: #ffffff;
}

@media (max-width: 991px) {
  html[data-theme="light"] .xr-nav {
    background: rgba(242, 246, 244, 0.98);
  }
}
