:root {
  --ink: #10151f;
  --ink-2: #172033;
  --muted: #5e6678;
  --line: #dfe5ee;
  --paper: #fbfcff;
  --white: #ffffff;
  --orange: #f9a300;
  --amber: #ffcf72;
  --magenta: #e03a7a;
  --cyan: #08aac4;
  --green: #47b881;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(18, 31, 52, 0.12);
  --wide: min(1640px, calc(100% - 64px));
  --subwide: min(1440px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 207, 114, 0.28), transparent 28%),
    radial-gradient(circle at 6% 58%, rgba(8, 170, 196, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 58%, #ffffff 100%);
  letter-spacing: 0;
}

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

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

.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.is-yjc-contact-page .grecaptcha-badge {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: auto;
  margin: 0;
  padding: 14px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: var(--wide);
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-wordmark {
  width: clamp(144px, 10vw, 182px);
  height: auto;
  max-height: 38px;
  object-fit: contain;
  flex: 0 1 auto;
}

.footer-brand .brand-wordmark {
  width: clamp(154px, 12vw, 196px);
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.global-nav a {
  padding: 14px 18px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.global-nav a:hover {
  color: var(--ink);
  background: transparent;
}

.global-nav .nav-contact {
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(11, 17, 28, 0.18);
}

.global-nav .nav-contact:hover {
  color: var(--white);
  background: var(--ink-2);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 12;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(223, 229, 238, 0.9);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 0.22s ease, opacity 0.22s ease, top 0.22s ease;
}

.menu-toggle span:nth-child(1) {
  top: 13px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 27px;
}

.nav-open .menu-toggle span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.nav-open .site-header {
  background: rgba(255, 255, 255, 0.96);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 5vw, 72px);
  min-height: 100svh;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 92px;
}

.hero::before {
  content: "";
  position: absolute;
  right: -18vw;
  top: 3vh;
  width: 68vw;
  height: 68vw;
  max-width: 900px;
  max-height: 900px;
  background:
    linear-gradient(rgba(16, 21, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 21, 31, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, #000 0 46%, transparent 72%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 4.35vw, 62px);
  line-height: 1.08;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 36px rgba(16, 21, 31, 0.18);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  overflow: hidden;
}

.logo3d-stage {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.logo3d-stage::before {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.72), transparent 34%),
    conic-gradient(from 130deg, rgba(8, 170, 196, 0.28), rgba(249, 163, 0, 0.36), rgba(224, 58, 122, 0.24), rgba(8, 170, 196, 0.28));
  filter: blur(10px);
  opacity: 0.82;
  animation: stageBreath 5s ease-in-out infinite;
}

.logo3d-stage::after {
  content: "";
  position: absolute;
  inset: 23%;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 207, 114, 0.48), rgba(255, 163, 0, 0.16) 42%, transparent 70%);
  filter: blur(34px);
  animation: corePulse 2.6s ease-in-out infinite;
}

.logo3d-canvas {
  position: absolute;
  inset: -8%;
  z-index: 5;
  width: 116%;
  height: 116%;
  display: block;
  pointer-events: none;
}

.logo3d-fallback {
  position: relative;
  z-index: 6;
  width: 34%;
  filter: drop-shadow(0 28px 52px rgba(249, 163, 0, 0.42));
  animation: logoFallbackSpin 6s ease-in-out infinite;
}

.stage-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(16, 21, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 21, 31, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle, #000 0 44%, transparent 76%);
  animation: gridDrift 10s linear infinite;
}

.stage-aura {
  position: absolute;
  inset: 13%;
  z-index: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 48%, rgba(224, 58, 122, 0.32), transparent 36%),
    radial-gradient(circle at 66% 48%, rgba(8, 170, 196, 0.32), transparent 36%),
    radial-gradient(circle at 50% 70%, rgba(249, 163, 0, 0.24), transparent 32%);
  filter: blur(18px);
  animation: auraShift 7s ease-in-out infinite;
}

.stage-ring {
  position: absolute;
  z-index: 3;
  inset: 12%;
  border: 1px solid rgba(16, 21, 31, 0.1);
  border-radius: 50%;
  transform-style: preserve-3d;
  pointer-events: none;
}

.stage-ring::before,
.stage-ring::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 26px rgba(8, 170, 196, 0.68);
}

.stage-ring::before {
  top: 18%;
  left: 12%;
}

.stage-ring::after {
  right: 14%;
  bottom: 21%;
  background: var(--magenta);
  box-shadow: 0 0 26px rgba(224, 58, 122, 0.68);
}

.ring-one {
  transform: rotateX(68deg) rotateZ(-18deg);
  animation: ringOrbit 12s linear infinite;
}

.ring-two {
  inset: 19%;
  transform: rotateX(72deg) rotateZ(54deg);
  animation: ringOrbit 9s linear infinite reverse;
}

.ring-three {
  inset: 5%;
  border-style: dashed;
  transform: rotateX(76deg) rotateZ(104deg);
  animation: ringOrbit 18s linear infinite;
}

.stage-readout {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  display: grid;
  gap: 5px;
  padding: 11px 13px;
  border: 1px solid rgba(223, 229, 238, 0.9);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(18, 31, 52, 0.1);
  backdrop-filter: blur(14px);
}

.stage-readout span {
  color: var(--magenta);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.stage-readout strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.orbit-field {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  perspective: 1100px;
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.commerce-mark {
  position: relative;
  z-index: 5;
  width: 48%;
  aspect-ratio: 1;
  padding: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9) 0 24%, rgba(255, 248, 231, 0.48) 52%, transparent 66%),
    conic-gradient(from 160deg, rgba(8, 170, 196, 0.18), rgba(249, 163, 0, 0.28), rgba(224, 58, 122, 0.16), rgba(8, 170, 196, 0.18));
  box-shadow:
    0 38px 110px rgba(18, 31, 52, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.86),
    inset 0 0 46px rgba(255, 207, 114, 0.32);
  transform-style: preserve-3d;
  animation: futureLogoDrift 7s ease-in-out infinite;
  overflow: visible;
}

.commerce-mark::before {
  content: "";
  position: absolute;
  inset: -22%;
  border-radius: inherit;
  background:
    conic-gradient(from 0deg, transparent, rgba(8, 170, 196, 0.38), transparent, rgba(224, 58, 122, 0.34), transparent),
    radial-gradient(circle, rgba(255, 207, 114, 0.18), transparent 62%);
  filter: blur(10px);
  opacity: 0.76;
  animation: energyRotate 9s linear infinite;
}

.commerce-mark::after {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle, rgba(255, 207, 114, 0.72), rgba(249, 163, 0, 0.18) 46%, transparent 72%);
  filter: blur(44px);
  animation: glowPulse 4s ease-in-out infinite;
}

.hologram-canvas {
  position: absolute;
  z-index: 1;
  inset: -13%;
  width: 126%;
  height: 126%;
  opacity: 0.72;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.logo-extrusion {
  position: absolute;
  inset: 15%;
  z-index: 4;
  transform-style: preserve-3d;
  animation: logoTurn 10s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.logo-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  backface-visibility: hidden;
  transform: translateZ(var(--z, 0));
  filter:
    drop-shadow(0 24px 42px rgba(249, 163, 0, 0.28))
    saturate(var(--sat, 1.05))
    brightness(var(--bright, 1));
  opacity: var(--opacity, 1);
}

.logo-front {
  --z: 48px;
  z-index: 30;
  filter:
    drop-shadow(0 24px 42px rgba(249, 163, 0, 0.28))
    saturate(1.08)
    brightness(1.04);
}

.logo-depth {
  --opacity: 0.08;
  --sat: 1.35;
  --bright: 1.06;
  filter:
    drop-shadow(0 0 12px rgba(249, 163, 0, 0.22))
    hue-rotate(var(--hue, 0deg))
    saturate(var(--sat))
    brightness(var(--bright));
}

.scanner-beam {
  position: absolute;
  z-index: 8;
  left: 12%;
  right: 12%;
  top: 18%;
  height: 18%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.95), rgba(8, 170, 196, 0.42), transparent);
  mix-blend-mode: screen;
  filter: blur(3px);
  transform: translateZ(76px);
  animation: scannerMove 3.4s ease-in-out infinite;
  pointer-events: none;
}

.core-light {
  position: absolute;
  z-index: 2;
  inset: 24%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 207, 114, 0.38) 35%, rgba(8, 170, 196, 0.16) 58%, transparent 70%);
  filter: blur(12px);
  transform: translateZ(-36px);
  animation: corePulse 2.8s ease-in-out infinite;
  pointer-events: none;
}

.halo {
  position: absolute;
  z-index: 2;
  inset: 9%;
  border: 1px solid rgba(16, 21, 31, 0.1);
  border-radius: 50%;
}

.halo::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 28px rgba(224, 58, 122, 0.7);
}

.halo-one {
  transform: rotateX(66deg) rotateZ(-18deg);
  animation: orbitSpin 16s linear infinite;
}

.halo-one::before {
  top: 14%;
  left: 18%;
}

.halo-two {
  inset: 17%;
  transform: rotateX(70deg) rotateZ(46deg);
  animation: orbitSpin 12s linear infinite reverse;
}

.halo-two::before {
  right: 12%;
  bottom: 22%;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(8, 170, 196, 0.68);
}

.halo-three {
  inset: 2%;
  transform: rotateX(72deg) rotateZ(88deg);
  border-style: dashed;
  animation: orbitSpin 24s linear infinite;
}

.halo-three::before {
  top: 50%;
  right: 2%;
  background: var(--green);
  box-shadow: 0 0 28px rgba(71, 184, 129, 0.64);
}

.data-node {
  position: absolute;
  z-index: 5;
  min-width: 68px;
  padding: 9px 12px;
  border: 1px solid rgba(223, 229, 238, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(18, 31, 52, 0.1);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(14px);
  animation: nodeFloat 5.5s ease-in-out infinite;
}

.logo3d-stage .data-node {
  z-index: 9;
}

.node-a {
  top: 18%;
  left: 18%;
}

.node-b {
  top: 12%;
  right: 12%;
  animation-delay: -1.4s;
}

.node-c {
  right: 7%;
  bottom: 20%;
  animation-delay: -2.4s;
}

.node-d {
  left: 18%;
  bottom: 13%;
  animation-delay: -3.3s;
}

.signal-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  width: 42%;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(224, 58, 122, 0.88), transparent);
  filter: blur(0.2px);
  animation: signalSweep 3.8s ease-in-out infinite;
}

.line-a {
  top: 32%;
  left: 8%;
  transform: rotate(24deg);
}

.line-b {
  top: 64%;
  right: 8%;
  transform: rotate(-22deg);
  background: linear-gradient(90deg, transparent, rgba(8, 170, 196, 0.82), transparent);
  animation-delay: -1.8s;
}

.line-c {
  top: 49%;
  left: 28%;
  background: linear-gradient(90deg, transparent, rgba(249, 163, 0, 0.9), transparent);
  animation-delay: -2.6s;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.55;
  animation: particleDrift var(--duration, 9s) ease-in-out infinite;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
  max-width: 620px;
}

.hero-metrics span {
  min-width: 0;
  padding: 9px 12px;
  border: 1px solid rgba(223, 229, 238, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
  scroll-margin-top: 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(80px, max-content) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
  margin-bottom: 44px;
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.18;
  font-weight: 900;
}

.section-heading h2 span {
  display: block;
  white-space: nowrap;
}

.market-section,
.strength-section {
  position: relative;
}

.market-section::before,
.strength-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 36px -40px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(249, 163, 0, 0.06), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0));
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 44px;
  align-items: start;
}

.intro-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
  font-weight: 650;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.stats div {
  position: relative;
  min-height: 156px;
  min-width: 0;
  padding: 28px clamp(28px, 2.4vw, 36px);
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  transition: transform 0.35s ease, background 0.35s ease;
}

.stats div:last-child {
  padding-right: clamp(42px, 4vw, 56px);
}

.stats div::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.stats div:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-4px);
}

.stats div:hover::after {
  transform: scaleX(1);
}

.stats strong {
  display: block;
  color: var(--orange);
  max-width: 100%;
  font-size: clamp(32px, 2.8vw, 36px);
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.stats span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 44px;
  align-items: center;
}

.market-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.market-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
  font-weight: 650;
}

.market-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.market-cards article {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 224px;
  padding: 30px clamp(22px, 2.1vw, 34px) 32px;
  background: rgba(255, 255, 255, 0.92);
  transition: background 0.35s ease, transform 0.35s ease;
}

.market-cards article::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, var(--orange), var(--magenta));
}

.market-cards article:hover {
  background: rgba(255, 255, 255, 0.99);
  transform: translateY(-3px);
}

.market-cards span,
.category-grid span,
.model-grid span,
.strength-grid span {
  display: inline-block;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.market-cards strong {
  display: block;
  margin-top: 24px;
  color: var(--orange);
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 0.95;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  white-space: nowrap;
}

.market-cards strong small {
  display: block;
  margin-top: 9px;
  padding-bottom: 0;
  color: var(--orange);
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.market-cards p,
.category-grid p,
.model-grid p,
.strength-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 650;
}

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

.model-grid article,
.category-grid article {
  min-width: 0;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 54px rgba(18, 31, 52, 0.08);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.model-grid article:hover,
.category-grid article:hover,
.strength-grid article:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 64px rgba(18, 31, 52, 0.12);
  transform: translateY(-4px);
}

.model-grid h3,
.category-grid h3,
.strength-grid h3 {
  margin: 18px 0 0;
  font-size: 21px;
  line-height: 1.42;
  font-weight: 950;
}

.model-grid .mono-illustration {
  margin-bottom: 24px;
}

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

.strength-grid article {
  position: relative;
  min-width: 0;
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.strength-grid article::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.strength-grid article:hover::before {
  opacity: 1;
}

.strength-grid .mono-illustration {
  margin-bottom: 24px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.service-list article {
  position: relative;
  min-height: 280px;
  padding: 28px 24px 32px;
  border-right: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.service-list article:first-child {
  border-left: 1px solid var(--line);
}

.service-list article::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--magenta), var(--orange), var(--cyan));
  transform: translateX(-105%);
  transition: transform 0.45s ease;
}

.service-list article:hover {
  z-index: 1;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 42px rgba(18, 31, 52, 0.08);
  transform: translateY(-6px);
}

.service-list article:hover::after {
  transform: translateX(0);
}

.service-list span {
  color: var(--magenta);
  font-size: 13px;
  font-weight: 900;
}

.service-list h3 {
  margin: 26px 0 18px;
  font-size: 22px;
}

.service-list p,
.flow-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 650;
}

.flow {
  border-top: 1px solid var(--line);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.flow-steps li {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.flow-steps li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 163, 0, 0.12), rgba(8, 170, 196, 0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.flow-steps li:hover {
  border-color: rgba(8, 170, 196, 0.28);
  box-shadow: 0 16px 38px rgba(18, 31, 52, 0.08);
  transform: translateY(-6px);
}

.flow-steps li:hover::after {
  opacity: 1;
}

.flow-steps li > * {
  position: relative;
  z-index: 1;
}

.flow-steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  right: 20px;
  top: 18px;
  color: rgba(16, 21, 31, 0.1);
  font-size: 48px;
  font-weight: 950;
}

.flow-steps span {
  display: block;
  margin: 20px 0 52px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.mono-illustration {
  position: relative;
  display: block;
  width: 70px;
  height: 54px;
  color: var(--ink);
  opacity: 0.82;
  transition: transform 0.38s ease, opacity 0.38s ease;
}

.service-list article:hover .mono-illustration,
.flow-steps li:hover .mono-illustration {
  opacity: 1;
  transform: translateY(-3px) rotate(-2deg);
}

.mono-illustration::before,
.mono-illustration::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  border-color: currentColor;
}

.illust-network::before {
  left: 8px;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 42px 0 0 currentColor, 21px 28px 0 currentColor;
}

.illust-network::after {
  left: 16px;
  top: 21px;
  width: 38px;
  height: 26px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 22px 22px 0 0;
}

.illust-guide::before {
  left: 10px;
  top: 7px;
  width: 46px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 6px;
  background:
    linear-gradient(currentColor, currentColor) 25px 13px / 20px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 25px 25px / 20px 2px no-repeat;
}

.illust-guide::after {
  left: 18px;
  top: 17px;
  width: 9px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  box-shadow: 0 12px 0 currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

.illust-live::before {
  left: 8px;
  top: 8px;
  width: 50px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.illust-live::after {
  left: 29px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid currentColor;
}

.illust-data::before {
  left: 10px;
  top: 10px;
  width: 50px;
  height: 32px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.illust-data::after {
  left: 18px;
  top: 15px;
  width: 8px;
  height: 24px;
  background: currentColor;
  box-shadow: 16px -8px 0 currentColor, 32px -2px 0 currentColor;
}

.illust-meeting::before {
  left: 7px;
  top: 9px;
  width: 38px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 9px;
}

.illust-meeting::after {
  left: 25px;
  top: 22px;
  width: 38px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 9px;
  background:
    radial-gradient(circle, currentColor 0 3px, transparent 3.5px) 11px 9px / 8px 8px no-repeat,
    radial-gradient(circle, currentColor 0 3px, transparent 3.5px) 24px 9px / 8px 8px no-repeat;
}

.illust-launch::before {
  left: 20px;
  top: 7px;
  width: 22px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 14px 14px 8px 8px;
  transform: rotate(42deg);
  background: radial-gradient(circle, currentColor 0 4px, transparent 4.5px) 7px 8px / 8px 8px no-repeat;
}

.illust-launch::after {
  left: 8px;
  top: 35px;
  width: 28px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(-18deg);
}

.illust-weeks::before {
  left: 9px;
  top: 8px;
  width: 50px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.illust-weeks::after {
  left: 17px;
  top: 21px;
  width: 6px;
  height: 6px;
  background: currentColor;
  box-shadow: 12px 0 0 currentColor, 24px 0 0 currentColor, 0 12px 0 currentColor, 12px 12px 0 currentColor, 24px 12px 0 currentColor;
}

.illust-proposal::before {
  left: 12px;
  top: 7px;
  width: 36px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 5px;
  background:
    linear-gradient(currentColor, currentColor) 9px 13px / 18px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 9px 23px / 18px 2px no-repeat;
}

.illust-proposal::after {
  left: 41px;
  top: 18px;
  width: 16px;
  height: 16px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}

.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 54px;
  padding: 64px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 24%, rgba(255, 207, 114, 0.4), transparent 24%),
    linear-gradient(135deg, #121821, #1a2330 62%, #0d4d5d);
  color: var(--white);
}

.contact .eyebrow {
  color: var(--amber);
}

.contact h2 {
  max-width: 760px;
  margin-bottom: 28px;
}

.contact h2 span {
  display: block;
  white-space: nowrap;
}

.contact-lead {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 650;
}

.contact .button.primary {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  padding: 30px 0 0;
  border-top: 1px solid var(--line);
}

.footer-main,
.footer-simple {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding-bottom: 24px;
}

.footer-brand {
  display: grid;
  gap: 0;
}

.footer-brand .brand {
  width: fit-content;
}

.footer-bottom a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.footer-bottom a:hover,
.footer-links a:hover {
  color: var(--orange);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.footer-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.footer-bottom small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.subpage {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 148px 0 84px;
}

.subpage-hero {
  display: grid;
  gap: 18px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.subpage-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  font-weight: 950;
}

.subpage-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 650;
}

.profile-table {
  width: 100%;
  margin-top: 48px;
  border-collapse: collapse;
  border-top: 1px solid var(--line);
}

.profile-table th,
.profile-table td {
  padding: 22px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.8;
}

.profile-table th {
  width: 220px;
  color: var(--ink);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.54);
}

.policy-content {
  display: grid;
  gap: 30px;
  margin-top: 48px;
}

.policy-content section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.policy-content h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  line-height: 1.9;
  font-weight: 650;
}

.policy-content p,
.policy-content ul {
  margin: 0;
}

.policy-content .mail-button {
  margin-top: 20px;
  width: 320px;
  max-width: 100%;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header[data-reveal],
.site-header[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

@keyframes orbitSpin {
  to {
    rotate: 360deg;
  }
}

@keyframes stageBreath {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.96;
    transform: scale(1.04);
  }
}

@keyframes gridDrift {
  to {
    background-position: 38px 38px;
  }
}

@keyframes auraShift {
  0%,
  100% {
    transform: rotate(-8deg) scale(0.98);
  }
  50% {
    transform: rotate(9deg) scale(1.05);
  }
}

@keyframes ringOrbit {
  to {
    rotate: 360deg;
  }
}

@keyframes logoFallbackSpin {
  0%,
  100% {
    transform: rotateY(-22deg) rotateX(8deg) scale(1);
  }
  50% {
    transform: rotateY(22deg) rotateX(-4deg) scale(1.05);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg) scale(1);
  }
  50% {
    transform: translateY(-18px) rotate(2deg) scale(1.025);
  }
}

@keyframes futureLogoDrift {
  0%,
  100% {
    transform: translateY(0) rotateX(58deg) rotateZ(-8deg);
  }
  50% {
    transform: translateY(-18px) rotateX(54deg) rotateZ(7deg);
  }
}

@keyframes logoTurn {
  0%,
  100% {
    transform: translateZ(30px) rotateX(-58deg) rotateY(-20deg) rotateZ(0deg);
  }
  38% {
    transform: translateZ(54px) rotateX(-54deg) rotateY(24deg) rotateZ(2deg);
  }
  66% {
    transform: translateZ(42px) rotateX(-60deg) rotateY(8deg) rotateZ(-3deg);
  }
}

@keyframes energyRotate {
  to {
    rotate: 360deg;
  }
}

@keyframes scannerMove {
  0%,
  100% {
    opacity: 0;
    transform: translateY(-78%) translateZ(76px) rotate(-8deg);
  }
  18%,
  72% {
    opacity: 0.86;
  }
  50% {
    transform: translateY(245%) translateZ(76px) rotate(-8deg);
  }
}

@keyframes corePulse {
  0%,
  100% {
    opacity: 0.42;
    transform: translateZ(-36px) scale(0.82);
  }
  50% {
    opacity: 0.92;
    transform: translateZ(-36px) scale(1.06);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes signalSweep {
  0%,
  100% {
    opacity: 0.18;
    scale: 0.7 1;
  }
  50% {
    opacity: 0.8;
    scale: 1.06 1;
  }
}

@keyframes particleDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.22;
  }
  50% {
    transform: translate3d(var(--dx, 24px), var(--dy, -34px), 0);
    opacity: 0.72;
  }
}

@media (max-width: 980px) {
  .header-inner {
    width: 100%;
    max-width: 1180px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .global-nav {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid rgba(223, 229, 238, 0.82);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 48px rgba(18, 31, 52, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-open .global-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a {
    padding: 14px;
  }

  .site-footer {
    width: calc(100% - 28px);
  }

  .footer-main,
  .footer-simple {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 112px;
  }

  .hero-visual {
    min-height: 480px;
    order: -1;
    overflow: visible;
  }

  .hero h1 {
    font-size: clamp(42px, 10.8vw, 64px);
  }

  .section-heading,
  .intro-grid,
  .market-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .stats,
  .service-list,
  .flow-steps,
  .market-cards,
  .model-grid,
  .category-grid,
  .strength-grid {
    grid-template-columns: 1fr;
  }

  .market-cards article,
  .model-grid article,
  .category-grid article,
  .strength-grid article {
    min-height: 0;
  }

  .stats div {
    padding: 28px;
  }

  .service-list article,
  .service-list article:first-child {
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .global-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .global-nav a {
    padding: 14px 18px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: auto;
    padding: 10px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    gap: 11px;
  }

  .brand .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand .brand-wordmark {
    width: min(42vw, 172px);
    max-height: 36px;
  }
}

@media (max-width: 620px) {
  .hero,
  .section,
  .contact {
    width: calc(100% - 28px);
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(38px, 10.2vw, 42px);
  }

  .lead {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 360px;
  }

  .logo3d-stage {
    width: min(420px, 100%);
  }

  .stage-readout {
    display: none;
  }

  .data-node {
    min-width: 56px;
    padding: 7px 9px;
    font-size: 10px;
  }

  .node-a {
    left: 11%;
  }

  .node-b {
    right: 7%;
  }

  .node-c {
    right: 7%;
    bottom: 19%;
  }

  .node-d {
    left: 14%;
    bottom: 17%;
  }

  .section {
    padding: 72px 0;
  }

  .stats div,
  .service-list article,
  .flow-steps li,
  .market-cards article,
  .model-grid article,
  .category-grid article,
  .strength-grid article {
    min-height: 0;
  }

  .contact {
    padding: 42px 24px;
  }

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

  .hero-metrics span,
  .footer-links a {
    width: 100%;
  }

  .subpage {
    width: calc(100% - 28px);
    padding: 120px 0 64px;
  }

  .profile-table,
  .profile-table tbody,
  .profile-table tr,
  .profile-table th,
  .profile-table td {
    display: block;
    width: 100%;
  }

  .profile-table th {
    padding-bottom: 6px;
    border-bottom: 0;
    background: transparent;
  }

  .profile-table td {
    padding-top: 0;
  }

  .policy-content section {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.subpage-hero {
  border-bottom: 0;
}

.button {
  gap: 12px;
  min-height: 50px;
}

.button i {
  position: relative;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.button i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.button.light {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  width: var(--wide);
  margin: 48px auto 0;
  padding: clamp(42px, 6vw, 74px);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(115deg, rgba(16, 21, 31, 0.98), rgba(20, 70, 76, 0.92)), var(--ink);
  box-shadow: 0 32px 90px rgba(18, 31, 52, 0.18);
}

.contact-band .eyebrow {
  color: var(--amber);
}

.contact-band h2 {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: clamp(40px, 3.45vw, 58px);
  line-height: 1.18;
  font-weight: 950;
}

.contact-band h2 span {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  color: transparent;
}

.contact-band h2 span::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left center;
}

.contact-band h2.is-visible span {
  animation: contactHeadlineText 0.92s steps(1, end) both;
}

.contact-band h2.is-visible span::before {
  animation: headlineBlock 0.92s cubic-bezier(0.76, 0, 0.24, 1) both;
}

.contact-band h2 span:nth-child(2),
.contact-band h2 span:nth-child(2)::before {
  animation-delay: 0.12s;
}

.contact-band p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: var(--wide);
  margin: 42px auto 0;
  padding: 30px 0 42px;
  border-top: 0;
  color: var(--muted);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  font-size: 13px;
  font-weight: 800;
}

.footer-links a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  width: auto;
}

.footer-links a:hover {
  color: var(--ink);
}

.site-footer small {
  color: inherit;
  font-size: 12px;
  font-weight: 700;
}

@keyframes headlineBlock {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  46% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  47% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right center;
  }
}

@keyframes contactHeadlineText {
  0%,
  45% {
    color: transparent;
  }
  46%,
  100% {
    color: var(--white);
  }
}

@media (max-width: 980px) {
  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contact-band,
  .site-footer {
    width: calc(100% - 24px);
    max-width: 1180px;
  }

  .contact-band {
    padding: 34px 28px;
  }

  .contact-band h2 {
    font-size: clamp(31px, 8.2vw, 35px);
  }

  .footer-links a {
    width: auto;
  }
}

.subpage {
  width: 100%;
  max-width: none;
  padding: clamp(142px, 10vw, 178px) 0 96px;
}

.subpage-hero,
.profile-table,
.policy-content,
.profile-map {
  width: var(--subwide);
  margin-left: auto;
  margin-right: auto;
}

.subpage-hero {
  gap: 0;
  padding: clamp(34px, 4.2vw, 62px) 0 70px;
}

.subpage-hero .eyebrow {
  margin: 0 0 18px;
  color: var(--magenta);
}

.subpage-hero h1 {
  margin: 0 0 50px;
  font-size: clamp(37px, calc(6vw - 5px), 73px);
}

.subpage-hero p {
  max-width: 880px;
  margin: 0;
  font-size: clamp(16px, 1.08vw, 18px);
}

.profile-table,
.policy-content {
  margin-top: 0;
}

.profile-map {
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(18, 31, 52, 0.1);
}

.profile-map iframe {
  display: block;
  width: 100%;
  height: clamp(420px, 42vw, 600px);
  border: 0;
}

@media (max-width: 760px) {
  .subpage {
    padding: 76px 0 56px;
  }

  .subpage-hero,
  .profile-table,
  .policy-content,
  .profile-map {
    width: calc(100% - 24px);
    max-width: 1180px;
  }

  .subpage-hero {
    gap: 0;
    padding: 8px 0 30px;
  }

  .subpage-hero h1 {
    margin-bottom: 30px;
  }

  .subpage-hero p {
    line-height: 1.75;
    overflow-wrap: anywhere;
  }

  .profile-table,
  .policy-content {
    margin-top: 0;
  }

  .subpage .policy-content[data-reveal] {
    opacity: 1;
    transform: none;
    transition-delay: 0ms !important;
  }

  .policy-content p,
  .policy-content li {
    overflow-wrap: anywhere;
  }

  .policy-content .mail-button {
    width: 100%;
    max-width: calc(100vw - 70px);
    padding-right: 12px;
    padding-left: 12px;
  }

  .profile-map {
    margin-top: 24px;
  }

  .profile-map iframe {
    height: 360px;
  }
}

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

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .admin-bar .global-nav {
    top: 122px;
  }
}

.policy-content .wpcf7 {
  margin-top: 4px;
}

.yjc-cf7-form {
  display: grid;
  gap: 30px;
}

.yjc-form-note {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(248, 250, 252, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.yjc-form-row {
  display: grid;
  grid-template-columns: minmax(130px, 180px) 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.yjc-form-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 56px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
}

.yjc-cf7-form .form-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  min-height: 28px;
  height: 28px;
  margin-top: 14px;
  padding: 3px 8px;
  border-radius: 0;
  color: #fff !important;
  background: var(--orange);
  font-size: 11px;
  font-weight: 900 !important;
  line-height: 1.4;
  transform: translateX(-10px);
}

.yjc-form-control {
  display: grid;
  gap: 10px;
}

.yjc-form-control .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  min-width: 0;
}

.yjc-address-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.yjc-address-grid input[name="postal-code"],
.yjc-address-grid .yjc-postal-code {
  max-width: 220px;
}

.yjc-address-grid input[name="your-address"],
.yjc-address-grid .yjc-address-input {
  max-width: none;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  min-height: 56px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.6;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wpcf7 textarea {
  min-height: 190px;
  resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: rgba(249, 163, 0, 0.72);
  box-shadow: 0 0 0 4px rgba(249, 163, 0, 0.14);
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.yjc-cf7-form .wpcf7-acceptance {
  display: block;
  width: 100%;
}

.yjc-cf7-form .wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 0;
}

.yjc-cf7-form .wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex;
  min-height: 28px;
  height: 28px;
  white-space: nowrap;
  align-items: center;
  gap: 10px;
  line-height: 28px;
}

.yjc-cf7-form .wpcf7-acceptance .wpcf7-list-item-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  height: 28px;
  line-height: 28px;
}

.wpcf7 .yjc-cf7-form .wpcf7-acceptance input[type="checkbox"] {
  flex: 0 0 28px;
  width: 28px !important;
  min-width: 28px;
  height: 28px !important;
  min-height: 28px;
  margin: 0;
  padding: 0;
  transform: none;
}

.wpcf7 input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--orange);
}

.wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #d63638;
  font-size: 13px;
  font-weight: 800;
}

.wpcf7 form .wpcf7-response-output {
  margin: 26px 0 0;
  padding: 16px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.yjc-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.wpcf7-submit {
  min-width: 240px;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(16, 21, 31, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.wpcf7-submit:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
}

.wpcf7-spinner {
  margin: 0 0 0 14px;
}

@media (max-width: 760px) {
  .yjc-cf7-form {
    gap: 24px;
  }

  .yjc-form-row {
    grid-template-columns: 1fr 54px;
    gap: 12px;
    padding-bottom: 24px;
  }

  .yjc-form-label {
    min-height: auto;
  }

  .yjc-form-control {
    grid-column: 1 / -1;
  }

  .yjc-cf7-form .form-required {
    justify-self: end;
    margin-top: 0;
  }

  .yjc-address-grid {
    grid-template-columns: 1fr;
  }

  .yjc-form-actions,
  .wpcf7-submit {
    width: 100%;
  }
}

.wpcf7 form .form-required,
.wpcf7-form .form-required,
.wpcf7 .yjc-cf7-form .form-required,
.yjc-cf7-form .form-required {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  width: 54px !important;
  min-width: 54px !important;
  min-height: 28px !important;
  height: 28px !important;
  margin-top: 14px !important;
  padding: 3px 8px !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: var(--orange) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
  text-shadow: none !important;
  transform: translateX(-10px) !important;
}

.wpcf7 form .wpcf7-acceptance,
.wpcf7-form .wpcf7-acceptance,
.wpcf7 .yjc-cf7-form .wpcf7-acceptance {
  display: block !important;
  width: 100% !important;
}

.wpcf7 form .wpcf7-acceptance .wpcf7-list-item,
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item,
.wpcf7 .yjc-cf7-form .wpcf7-acceptance .wpcf7-list-item {
  display: block !important;
  margin: 0 !important;
}

.wpcf7 form .wpcf7-acceptance .wpcf7-list-item label,
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item label,
.wpcf7 .yjc-cf7-form .wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 28px !important;
  height: 28px !important;
  margin: 0 !important;
  white-space: nowrap !important;
  line-height: 28px !important;
}

.wpcf7 form .wpcf7-acceptance .wpcf7-list-item-label,
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label,
.wpcf7 .yjc-cf7-form .wpcf7-acceptance .wpcf7-list-item-label {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 28px !important;
  height: 28px !important;
  line-height: 28px !important;
}

.wpcf7 form .wpcf7-acceptance input[type="checkbox"],
.wpcf7-form .wpcf7-acceptance input[type="checkbox"],
.wpcf7 .yjc-cf7-form .wpcf7-acceptance input[type="checkbox"] {
  display: inline-block !important;
  flex: 0 0 28px !important;
  box-sizing: border-box !important;
  width: 28px !important;
  min-width: 28px !important;
  height: 28px !important;
  min-height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.wpcf7 .yjc-form-row:has(.wpcf7-acceptance) .form-required,
.wpcf7-form .yjc-form-row:has(.wpcf7-acceptance) .form-required,
.yjc-cf7-form .yjc-form-row:has(.wpcf7-acceptance) .form-required {
  margin-top: 14px !important;
}

.wpcf7 .form-required p,
.wpcf7-form .form-required p,
.yjc-cf7-form .form-required p {
  margin: 0 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
}

.wpcf7 .yjc-form-control > p:has(.wpcf7-acceptance),
.wpcf7-form .yjc-form-control > p:has(.wpcf7-acceptance),
.yjc-cf7-form .yjc-form-control > p:has(.wpcf7-acceptance) {
  margin: 0 !important;
  min-height: 28px !important;
  height: 28px !important;
  line-height: 28px !important;
}

.wpcf7 .wpcf7-acceptance,
.wpcf7-form .wpcf7-acceptance,
.yjc-cf7-form .wpcf7-acceptance {
  min-height: 28px !important;
  height: 28px !important;
  line-height: 28px !important;
}

@media (min-width: 761px) {
  .wpcf7 .yjc-form-row:has(.wpcf7-acceptance) .yjc-form-control > p,
  .wpcf7-form .yjc-form-row:has(.wpcf7-acceptance) .yjc-form-control > p,
  .yjc-cf7-form .yjc-form-row:has(.wpcf7-acceptance) .yjc-form-control > p {
    margin: 0 !important;
    min-height: 56px !important;
    height: 56px !important;
    line-height: 56px !important;
  }

  .wpcf7 .yjc-form-row:has(.wpcf7-acceptance) .wpcf7-acceptance,
  .wpcf7-form .yjc-form-row:has(.wpcf7-acceptance) .wpcf7-acceptance,
  .yjc-cf7-form .yjc-form-row:has(.wpcf7-acceptance) .wpcf7-acceptance {
    min-height: 56px !important;
    height: 56px !important;
    line-height: 56px !important;
  }

  .wpcf7 .yjc-form-row:has(.wpcf7-acceptance) .wpcf7-list-item,
  .wpcf7-form .yjc-form-row:has(.wpcf7-acceptance) .wpcf7-list-item,
  .yjc-cf7-form .yjc-form-row:has(.wpcf7-acceptance) .wpcf7-list-item {
    display: block !important;
    margin: 0 !important;
    min-height: 56px !important;
    height: 56px !important;
    line-height: 56px !important;
  }

  .wpcf7 .yjc-form-row:has(.wpcf7-acceptance) .wpcf7-list-item label,
  .wpcf7-form .yjc-form-row:has(.wpcf7-acceptance) .wpcf7-list-item label,
  .yjc-cf7-form .yjc-form-row:has(.wpcf7-acceptance) .wpcf7-list-item label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    min-height: 56px !important;
    height: 56px !important;
    line-height: 56px !important;
  }

  .wpcf7 .yjc-form-row:has(.wpcf7-acceptance) .wpcf7-list-item-label,
  .wpcf7-form .yjc-form-row:has(.wpcf7-acceptance) .wpcf7-list-item-label,
  .yjc-cf7-form .yjc-form-row:has(.wpcf7-acceptance) .wpcf7-list-item-label {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 56px !important;
    height: 56px !important;
    line-height: 56px !important;
  }

  .wpcf7 .yjc-form-row:has(.wpcf7-acceptance) input[type="checkbox"],
  .wpcf7-form .yjc-form-row:has(.wpcf7-acceptance) input[type="checkbox"],
  .yjc-cf7-form .yjc-form-row:has(.wpcf7-acceptance) input[type="checkbox"] {
    width: 10px !important;
    min-width: 10px !important;
    height: 10px !important;
    min-height: 56px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}
