/* =========================================================
   MiraiWay — Apple-Inspired Sharp Precision Design
   Palette: Titanium Black #0a0a0c / Pure White #ffffff / Hairline Silver rgba(255,255,255,0.12)
   ========================================================= */
:root {
  --navy: #0f1115;
  --navy-deep: #050507;
  --gold: #e2e8f0;
  --gold-soft: #94a3b8;
  --blue-soft: #1e293b;
  --bg-light: #f5f5f7;
  --bg-blue: #f1f5f9;
  --text: #1d1d1f;
  --text-sub: #86868b;
  --white: #ffffff;
  --radius-lg: 0px;
  --radius-md: 0px;
  --radius-sm: 0px;
  --font-jp: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "M PLUS 1p", sans-serif;
  --font-en: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", "Inter", sans-serif;
}

.m-plus-1p-regular {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.shippori-antique-b1-regular {
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ---------- Loading Screen & Opening Animation ---------- */
#loading-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--navy-deep);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}
#loading-screen.fade-out {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader-logo {
  animation: loader-pulse 1.8s ease-in-out infinite;
}
.loader-logo svg {
  filter: drop-shadow(0 0 20px rgba(232, 185, 90, 0.3));
}
.loader-path-1 {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: loader-draw 1.5s ease forwards 0.3s;
}
.loader-path-2 {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: loader-draw 1.5s ease forwards 0.6s;
}
@keyframes loader-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes loader-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.loader-brand {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.1em;
  opacity: 0;
  animation: loader-text-in 0.8s ease forwards 0.8s;
}
.loader-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0;
  animation: loader-text-in 0.8s ease forwards 1.1s;
}
@keyframes loader-text-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.loader-bar-track {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}
.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #F5D78E);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* ---------- White Base Elegant Curtain Shutter Page Loader ---------- */
.page-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  overflow: hidden !important;
  background: transparent;
  transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}
.loader-curtain {
  position: absolute;
  left: 0; width: 100%; height: 51vh;
  background: #FFFFFF;
  z-index: 1;
  transform: translateY(0);
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
  box-shadow: none !important;
}
.loader-curtain.top { top: 0; transform-origin: top; }
.loader-curtain.bottom { bottom: 0; transform-origin: bottom; }

.page-loader.is-loaded .loader-curtain.top {
  transform: translateY(-100%);
}
.page-loader.is-loaded .loader-curtain.bottom {
  transform: translateY(100%);
}
.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.page-loader.is-loaded .loader-content {
  opacity: 0;
  transform: scale(0.92);
}
.page-loader.is-loaded {
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
}
.loader-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: loaderPulse 1.8s ease-in-out infinite alternate;
}
.loader-brand-name {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 300;
  color: #0F3875;
  letter-spacing: 0.04em;
}
@keyframes loaderPulse {
  0% { transform: scale(0.97); opacity: 0.85; }
  100% { transform: scale(1.02); opacity: 1; }
}
.loader-line-bar {
  width: 140px;
  height: 3px;
  background: #E2E8F0;
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}
.loader-line-progress {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0F3875 0%, #E8B95A 100%);
  border-radius: 99px;
  animation: loaderProgress 1.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes loaderProgress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Body state: prevent scroll during loading */
body.is-loading { overflow: hidden; }

/* Opening animation for hero after loading */
body.is-loading #site-header {
  opacity: 0;
  transform: translateY(-30px);
}
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 47, 82, 0.05);
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  transition: top 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              max-width 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.45s ease,
              border-color 0.45s ease,
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.8s ease 0.2s,
              transform 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.2s;
}

#site-header.scrolled {
  top: 14px;
  left: 0;
  right: 0;
  width: calc(100% - 36px);
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(16, 47, 82, 0.12);
  border-radius: 9999px;
  box-shadow: 0 16px 36px rgba(16, 47, 82, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#site-header.scrolled .header-inner {
  height: 54px;
  padding: 0 24px;
}
body.is-loading .hero-copy {
  opacity: 0;
  transform: translateX(-60px);
}
.hero-copy {
  transition: opacity 1s cubic-bezier(0.2, 1, 0.3, 1) 0.4s, transform 1s cubic-bezier(0.2, 1, 0.3, 1) 0.4s;
}
body.is-loading .hero-globe-wrap {
  opacity: 0;
  transform: scale(0.7) rotate(-10deg);
}
.hero-globe-wrap {
  transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1) 0.6s, transform 1.2s cubic-bezier(0.2, 1, 0.3, 1) 0.6s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--navy); font-weight: 700; line-height: 1.4; }

.pc-only { display: inline; }
  background: #FFFFFF;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.loader-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: loaderPulse 1.8s ease-in-out infinite alternate;
}
.loader-brand-name {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 300;
  color: #0F3875;
  letter-spacing: 0.04em;
}
@keyframes loaderPulse {
  0% { transform: scale(0.97); opacity: 0.85; }
  100% { transform: scale(1.02); opacity: 1; }
}
.loader-line-bar {
  width: 140px;
  height: 3px;
  background: #E2E8F0;
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}
.loader-line-progress {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, #0F3875 0%, #E8B95A 100%);
  animation: loaderLine 1.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes loaderLine {
  0% { left: -100%; }
  50% { left: 0%; }
  100% { left: 100%; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .85em 2em; border-radius: 0px;
  font-family: var(--font-en);
  font-weight: 600; font-size: .9rem; letter-spacing: -0.01em;
  border: 1px solid transparent; cursor: pointer;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #252830;
  border-color: #252830;
  color: var(--white);
}
.btn-sm { padding: .6em 1.4em; font-size: .82rem; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--navy);
  color: var(--navy);
}
.arrow, .btn i {
  font-family: var(--font-en);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover .arrow, .text-link:hover .arrow, .btn:hover i {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex; align-items: center; gap: .6em;
  color: var(--navy); font-weight: 600; font-size: 0.95rem;
  padding-bottom: .3em; border-bottom: 1px solid var(--navy);
  letter-spacing: -0.02em;
  transition: opacity 0.25s ease;
}
.text-link:hover {
  opacity: 0.7;
}

/* ---------- Header Brand & Nav ---------- */
.brand {
  display: flex;
  align-items: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  height: 100%;
}
.brand svg {
  display: block;
  height: 52px;
  width: auto;
  overflow: visible;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#site-header.scrolled .brand svg {
  height: 40px;
}
.brand:hover {
  opacity: 0.88;
}

#global-nav { display: flex; gap: 30px; }
#global-nav a { font-size: .92rem; font-weight: 500; color: var(--navy); position: relative; padding: .3em 0; }
#global-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--gold); transition: width .3s ease;
}
#global-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-en); font-weight: 600; font-size: .9rem; color: var(--navy);
  display: inline-flex; align-items: center; gap: .4em;
}
.lang-switch i { font-size: .65rem; }
.lang-invert { color: var(--white); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--navy); cursor: pointer; }

#mobile-nav {
  display: none; flex-direction: column; background: var(--white);
  border-top: 1px solid #e5ecf3; padding: 12px 24px 20px;
}
#mobile-nav a { padding: .8em 0; font-weight: 600; color: var(--navy); border-bottom: 1px solid #eef3f8; }
#mobile-nav .mobile-cta { color: var(--gold); border-bottom: none; }
#mobile-nav.open { display: flex; }

@media (max-width: 900px) {
  #global-nav, .header-actions .btn, .header-actions .lang-switch { display: none; }
  .menu-toggle { display: block; }
}

/* ---------- Hero ---------- */
#hero-section {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  padding: 80px 24px 0;
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px; align-items: center;
  position: relative; z-index: 3;
}
.hero-copy {
  position: relative; z-index: 4;
}
.hero-title {
  font-family: "Shippori Antique B1", serif;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 400; letter-spacing: .02em; line-height: 1.45;
  margin-bottom: 28px;
}
.hero-lead { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--text-sub); margin-bottom: 36px; }

.hero-globe-wrap { position: relative; display: flex; justify-content: center; }

/* Canvas 3D Typography Globe */
.typography-globe {
  position: absolute;
  top: 50%;
  right: clamp(-60px, -3vw, -20px);
  width: clamp(520px, 52vw, 740px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
  animation: globeFloat 9s ease-in-out infinite;
}

@keyframes globeFloat {
  0%, 100% {
    transform: translateY(-50%) translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-50%) translateY(-10px) rotate(0.6deg);
  }
}

.typography-globe canvas {
  display: block;
  width: 100%;
  height: 100%;
  /* To give the canvas the same soft shadow the SVG had */
  filter: drop-shadow(0 26px 50px rgba(16, 47, 82, 0.16));
}

/* ---------- Global Path ---------- */
.global-path-wrapper {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 100%;
  min-height: 6000px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.global-path {
  width: 100%; height: 100%;
  display: block;
}

@media (max-width: 900px) {
  #hero-section {
    padding-top: 90px;
    padding-bottom: 40px;
    min-height: 100vh;
    height: auto;
  }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-globe-wrap { order: -1; margin-bottom: 8px; }
  .typography-globe {
    position: relative;
    top: auto;
    right: auto;
    width: min(88vw, 360px);
    margin: 20px auto 0;
    transform: none;
  }
}

/* ---------- Custom Interactive Cursor (Disabled for OS Native Cursor Precision) ---------- */
#custom-cursor {
  display: none !important;
}

/* ---------- Kinetic Typography ---------- */
.kinetic-bg {
  position: absolute;
  top: 15%; left: 0;
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
  z-index: 0;
  opacity: 0.05;
  pointer-events: none;
}
.kinetic-track {
  display: inline-block;
  animation: kinetic-scroll 50s linear infinite;
  will-change: transform;
}
.kinetic-track span {
  font-family: var(--font-en);
  font-size: 16vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 3px var(--navy);
  padding-right: 50px;
}
@keyframes kinetic-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Sections (共通) ---------- */
.num-section { position: relative; padding: 130px 24px; z-index: 1; }
.transparent-section { background: transparent !important; }

.section-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.section-inner.split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center;
}
.section-inner.split-reverse {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center;
}
/* ---------- Floating Particles ---------- */
#particles-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.num-head { display: flex; align-items: flex-start; gap: 22px; margin-bottom: 30px; }
.big-num {
  font-family: var(--font-en); font-weight: 800;
  font-size: clamp(3.4rem, 6.5vw, 5.2rem); line-height: .9;
  color: var(--navy); opacity: .92;
}
.num-titles { padding-top: .4em; }
.eyebrow {
  display: block; font-family: var(--font-en); font-weight: 700;
  font-size: .8rem; letter-spacing: .18em; color: var(--gold);
  margin-bottom: .5em; text-transform: uppercase;
}
.eyebrow + h2, .num-titles h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 900; }

.section-desc { font-size: 1.05rem; font-weight: 500; margin-bottom: 18px; line-height: 1.7; }
.section-sub { color: var(--text-sub); font-size: .95rem; margin-bottom: 26px; }

.section-photo { overflow: hidden; box-shadow: 0 24px 60px rgba(22,50,79,.15); transition: transform .8s ease; }
/* Precision Sharp Grid System for images */
.organic-blob-1, .organic-blob-2, .organic-blob-3 { border-radius: 0px; }

.section-photo img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; transform: scale(1.04) translateY(var(--parallax-y, 0px)); transition: transform 0.1s linear, filter 0.3s ease; }
.section-photo:hover img { filter: brightness(1.05); transform: scale(1.08) translateY(var(--parallax-y, 0px)); }

/* ---------- 01 About Section (Design Reproduction) ---------- */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Row 1: Hero Text + Image */
.about-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-hero-text {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.label-num {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--navy);
  opacity: 0.5;
}
.label-divider {
  color: var(--navy);
  opacity: 0.2;
  font-weight: 200;
}
.label-text {
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--navy);
  opacity: 0.6;
}
.about-title {
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.about-title-line {
  width: 40px;
  height: 2px;
  background: var(--navy);
  border-radius: 0px;
  margin-bottom: 20px;
}
.about-desc {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.85;
  letter-spacing: -0.01em;
}

/* Hero Image Sharp Square */
.about-hero-image {
  border-radius: 0px;
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-hero-image:hover img {
  transform: scale(1.04);
}

/* ---------- ABOUT US Infinite Marquee Gallery Ticker (Rightward Scrolling) ---------- */
.about-marquee-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 40px;
  margin-bottom: 50px;
  overflow: hidden;
  padding: 16px 0 24px;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.about-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScrollRight 40s linear infinite;
  will-change: transform;
}

.about-marquee-track:hover {
  animation-play-state: paused;
}

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

.marquee-card {
  flex-shrink: 0;
  width: 360px;
  height: 240px;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #0f172a;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.marquee-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
}

.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.marquee-card:hover img {
  transform: scale(1.06);
}

.marquee-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  color: #ffffff;
}

.marquee-badge {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #f59e0b;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.marquee-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 640px) {
  .marquee-card {
    width: 280px;
    height: 190px;
  }
}

/* Row 2: Stats Wide Card - Hairline Sharp Grid */
.about-stats-row {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 0px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.about-stat-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 44px;
}
.stat-divider {
  width: 1px;
  height: 100px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.stat-box-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.stat-info {
  display: flex;
  flex-direction: column;
}
.stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.stat-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
}
.stat-unit {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
}
.stat-en {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-sub);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.stat-jp-line {
  width: 24px;
  height: 1px;
  background: var(--navy);
  border-radius: 0px;
  margin-bottom: 10px;
}
.stat-jp {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* Flag Pair Connector - Square Sharp Badge */
.flag-pair {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #F8FAFC;
  padding: 10px 18px;
  border-radius: 0px;
  border: 1px solid #E2E8F0;
}
.flag-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.flag-emoji {
  font-size: 1.3rem;
  line-height: 1;
}
.flag-name {
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 700;
  color: #0F3875;
}
.flag-connector {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 50px;
}
.flag-line {
  height: 1px;
  flex: 1;
  background: #94A3B8;
  border-radius: 0px;
}
.flag-arrow {
  font-size: 0.78rem;
  color: var(--navy);
}

/* Mini Bar Charts - Sharp Edges */
.stat-box-right {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 90px;
}
.bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}
.bar {
  width: 20px;
  min-height: 20px;
  border-radius: 0px;
  transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Fallback heights for bars */
.bar.blue-bar { height: 40%; background: #3E6A94; }
.bar.green-bar { height: 60%; background: #4F9461; }
.bar.yellow-bar { height: 80%; background: #D4A94D; }
.bar.navy-bar { height: 100%; background: #0D1B2A; }
.bar-label {
  font-size: 0.65rem;
  font-family: var(--font-en);
  color: var(--text-sub);
  font-weight: 600;
  white-space: nowrap;
}
.bar-icon {
  font-size: 0.75rem;
  color: var(--text-sub);
  opacity: 0.7;
}
.four-bars { gap: 8px; }
.four-bars .bar { width: 18px; }

/* Row 3: Feature Cards - Precision Sharp Hairline Cards */
.about-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: 0px;
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
}
.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 0px;
  margin-bottom: 20px;
}
.blue-dot { background: #3E6A94; }
.green-dot { background: #4F9461; }
.yellow-dot { background: #D4A94D; }
.feature-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 0px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
}
.feature-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.feature-text p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.6;
}
.feature-arrow {
  width: 32px;
  height: 32px;
  border-radius: 0px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--navy);
  align-self: flex-end;
  transition: all 0.3s ease;
}
.feature-card:hover .feature-arrow {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateX(4px);
}

/* Row 4: Trust Banner - Hairline Sharp Divider */
.about-trust-row {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 0px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px 36px;
  gap: 24px;
}
.trust-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding-right: 24px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 0px;
  background: var(--navy-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.trust-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.trust-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: space-around;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-sub);
  line-height: 1.4;
}
.trust-item i {
  font-size: 1rem;
  color: var(--navy);
  opacity: 0.6;
  flex-shrink: 0;
}
.trust-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.5;
}
.trust-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: space-around;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-sub);
  line-height: 1.4;
}
.trust-item i {
  font-size: 1rem;
  color: var(--navy);
  opacity: 0.5;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .section-inner.split, .section-inner.split-reverse { grid-template-columns: 1fr; gap: 34px; }
  .num-section { padding: 80px 20px; }
  .about-hero-row { grid-template-columns: 1fr; }
  .about-hero-text { padding: 0 0 24px 0; }
  .about-hero-image { min-height: 250px; }
  .about-stats-row { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; margin: 0 24px; }
  .about-features-row { grid-template-columns: 1fr; }
  .about-trust-row { flex-direction: column; text-align: center; }
  .trust-left { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); padding-right: 0; padding-bottom: 16px; flex-direction: column; }
  .trust-right { flex-direction: column; gap: 16px; }
}

/* ---------- 02 Services Showcase (Alternating Layout) ---------- */
.service-showcase-list {
  display: flex; flex-direction: column; gap: 140px; margin-top: 80px;
}
.service-showcase-item {
  position: relative;
}
.service-showcase-item.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.service-showcase-item.split-reverse {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.service-showcase-item .service-text {
  padding: 20px 0;
}
.service-title {
  font-size: 2.2rem; font-weight: 800; color: var(--navy); margin-bottom: 24px;
  line-height: 1.2;
}
.service-desc {
  font-size: 1.1rem; color: var(--text-sub); line-height: 1.8; margin-bottom: 36px;
}

.num-lead-desc {
  font-size: 1.15rem;
  color: var(--text-sub, #4B5563);
  margin-top: 12px;
  font-weight: 500;
  line-height: 1.6;
}

/* Glass Card for Visuals - Sharp Hairline Frame */
.glass-card-large {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  padding: 60px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: none;
  aspect-ratio: 1 / 1;
  max-height: 500px;
  position: relative;
  overflow: hidden;
}
.glass-card-large::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.4), transparent 60%);
  pointer-events: none; opacity: 0.3;
}

/* Premium Image Card Styling for Services */
.glass-card-large.service-image-card {
  padding: 0 !important;
  border-radius: 0px;
  border: 1px solid rgba(16, 47, 82, 0.08);
  box-shadow: 0 20px 40px rgba(16, 47, 82, 0.08);
  aspect-ratio: 4 / 3;
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card-large.service-image-card::before {
  display: none;
}
.animated-icon-card:hover .glass-card-large.service-image-card {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(16, 47, 82, 0.16);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.animated-icon-card:hover .service-img {
  transform: scale(1.06);
}

/* ---------- Animated Service SVGs ---------- */
.animated-svg-wrapper.huge-svg {
  width: 100%; height: 100%; max-width: 280px; max-height: 280px;
  color: var(--navy);
  margin: 0;
  transition: transform 0.4s ease, color 0.4s ease;
}
.animated-icon-card:hover .animated-svg-wrapper.huge-svg {
  color: var(--navy-deep);
  transform: scale(1.05);
}

.material-service-icon {
  font-size: 7.5rem !important;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.animated-icon-card:hover .material-service-icon {
  transform: scale(1.05);
}
.dynamic-svg {
  width: 100%; height: 100%;
  display: block;
}
/* dynamic-svg-stroke is manipulated by JS for scrollytelling */
.dynamic-svg-stroke {
  /* No CSS transition, JS handles the exact offset based on scroll */
}

/* ---------- Animated Link Button ---------- */
.card-action-bottom { margin-top: 24px; text-align: left; }
.btn-link-animated {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
  text-decoration: none; position: relative;
  letter-spacing: -0.01em;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.btn-link-animated::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0%; height: 1px; background: currentColor;
  transition: width 0.3s ease;
}
.btn-link-animated:hover::after { width: 100%; }
.btn-link-animated i { transition: transform 0.3s ease; }
.btn-link-animated:hover i { transform: translateX(4px); }
@media (max-width: 900px) {
  .service-showcase-list { gap: 80px; }
  .service-showcase-item.split,
  .service-showcase-item.split-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-title { font-size: 1.8rem; }
  .glass-card-large { aspect-ratio: auto; padding: 60px 20px; }
  .animated-svg-wrapper.huge-svg { max-width: 180px; max-height: 180px; }
}

/* ---------- 03 Process Journey (Sticky Scroll & Panels) ---------- */
.sticky-scroll-section {
  position: relative;
  padding: 0; 
  color: var(--white);
}
.dark-dissolve-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--navy-deep);
  z-index: 0;
  opacity: 0;
  will-change: opacity;
}
.sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.process-bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: url('/static/images/tokyo-skyline.jpg') center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}
.horizontal-scroll-track {
  display: flex;
  height: 100vh;
  width: max-content;
  will-change: transform;
  padding-left: 8vw;
  position: relative;
  z-index: 2;
  align-items: center;
}

/* Progress Line */
.journey-progress-container {
  position: absolute;
  top: 50%; left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
  z-index: 1;
}
.journey-line {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.15);
}
.journey-line-fill {
  position: absolute;
  top: 0; left: 0;
  width: 0%; height: 100%;
  background: #ffffff;
  will-change: width;
}

/* Panels */
.journey-panel {
  position: relative;
  width: 50vw;
  max-width: 540px;
  min-width: 320px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  padding: 0 15px;
}
.journey-panel.intro-panel {
  width: 30vw;
  max-width: 380px;
  min-width: 280px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 4vw;
}
.journey-panel.intro-panel .big-num { color: #ffffff !important; opacity: 1 !important; }
.journey-panel.intro-panel .eyebrow { color: #f59e0b !important; opacity: 1 !important; }
.journey-panel.intro-panel h2 { color: #ffffff !important; opacity: 1 !important; }
.journey-panel.intro-panel .section-desc { color: rgba(255, 255, 255, 0.88) !important; }
.journey-panel.end-panel {
  padding: 0 15px;
  margin-right: 12vw;
}

.watermark-num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-size: 30vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.glass-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
}
.card-image-placeholder {
  width: 100%;
  height: 240px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-image-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.flow-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.glass-card:hover .flow-card-img {
  transform: scale(1.05);
}
.placeholder-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
}
.card-content {
  padding: 40px;
}
.glass-card .step-icon-hz {
  width: 64px; height: 64px;
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #ffffff;
  margin-bottom: 24px;
}
.glass-card h3 { font-size: 1.5rem; margin-bottom: 16px; color: #FFFFFF; font-weight: 700; letter-spacing: -0.02em; }
.glass-card p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.75); line-height: 1.7; }

@media (max-width: 900px) {
  .journey-panel { width: 90vw; min-width: auto; }
  .glass-card { width: 90%; padding: 32px; }
  .watermark-num { font-size: 50vw; }
}

/* ---------- 04 Contact ---------- */
.contact-cta-wrapper { margin-top: 36px; }
.btn-large { font-size: 1.1rem; padding: 1.1em 2.4em; }

/* ---------- Footer ---------- */
#site-footer { 
  background: #090D16; 
  color: rgba(255,255,255,.85); 
  margin-top: 0; 
  padding: 60px 0 40px;
  position: relative;
  z-index: 10;
}

.footer-inner {
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 24px 50px;
  display: grid; 
  grid-template-columns: 280px 1fr auto; 
  gap: 48px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-slogan { 
  font-size: 0.85rem; 
  line-height: 1.8; 
  margin: 0; 
  color: rgba(255, 255, 255, 0.75); 
}

.footer-nav { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 24px; 
}

.footer-col h4 { 
  color: #FFFFFF; 
  font-size: 0.95rem; 
  margin-bottom: 16px; 
  font-weight: 700; 
  letter-spacing: 0.03em;
}

.footer-col a { 
  display: block; 
  font-size: 0.85rem; 
  color: rgba(255, 255, 255, 0.75) !important; 
  padding: 5px 0; 
  transition: color 0.25s ease; 
  text-decoration: none; 
}

.footer-col a:hover { 
  color: #38bdf8 !important; 
}

.footer-cta { 
  display: flex; 
  flex-direction: column; 
  align-items: flex-start; 
  gap: 20px; 
}

/* Fix "薄くて見えない文字" for 無料で採用相談 button */
.footer-cta .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 0px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-cta .btn-outline:hover {
  background: #38bdf8;
  border-color: #38bdf8;
  color: #0F172A !important;
}

.footer-lang { 
  font-size: 0.85rem; 
  color: #FFFFFF; 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  opacity: 0.9;
}

.footer-bottom {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 28px 24px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-bottom-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.03);
}

.footer-social-icon:hover {
  border-color: #38bdf8;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  transform: translateY(-2px);
}

.footer-social-icon.is-disabled {
  color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
  background: transparent;
  cursor: default;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #38bdf8 !important;
}

@media (max-width: 900px) {
  .footer-inner { 
    grid-template-columns: 1fr; 
    gap: 36px; 
    padding-bottom: 36px;
  }
  .footer-nav { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .footer-legal {
    justify-content: center;
  }
}

/* ---------- Scroll Reveal & Advanced Reveal ---------- */
/* ---------- Scroll Reveal & Clean Subdued Animations ---------- */
.reveal { 
  opacity: 0; 
  transform: translateY(16px); 
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); 
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- 01 About: Clean Staggered Animations ---------- */
.about-hero-text.reveal {
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-hero-text.reveal.visible { transform: translateY(0); }

.about-hero-image.reveal {
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-hero-image.reveal.visible { transform: translateY(0); }

.about-stat-box.reveal {
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-stat-box.reveal.reveal-delay-1 {
  transition-delay: 0.15s !important;
}

.feature-card.reveal {
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card.reveal.reveal-delay-1 {
  transition-delay: 0.1s !important;
}
.feature-card.reveal.reveal-delay-2 {
  transition-delay: 0.2s !important;
}

.about-trust-row.reveal {
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-animate {
  height: 0% !important;
  transition: height 1s ease-out;
}

/* ---------- 04 Contact Animations ---------- */
.reveal-glow {
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 1.5s ease;
}
.reveal-glow.visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.center-head.reveal {
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-title.reveal {
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-desc.reveal {
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-cta-wrapper.reveal {
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Magnetic Button ---------- */
.magnetic {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: transform;
}

/* ---------- 04 Dark Contact Finale Redesign ---------- */
.dark-contact-section {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
  padding: 120px 24px;
}
.contact-bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('/static/images/contact-handshake-bg.png') center/cover no-repeat;
  opacity: 0.22;
  filter: contrast(1.15) brightness(0.85);
  mix-blend-mode: luminosity;
  z-index: 0;
  pointer-events: none;
}
.contact-glow-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw; height: 90vw;
  max-width: 1100px; max-height: 1100px;
  background: radial-gradient(circle, rgba(232, 185, 90, 0.22) 0%, rgba(84, 130, 176, 0.1) 40%, rgba(13, 27, 42, 0) 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-inner-wrap {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Container for Contact Section (Border & background removed) */
.contact-glass-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.center-head {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.center-head .big-num { color: rgba(255,255,255,0.12); font-size: 7.5rem; }
.center-head .eyebrow { letter-spacing: 0.3em; margin: 0; }

.contact-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.contact-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 680px;
}

.contact-features-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.c-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 20px;
  border-radius: 0px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}
.c-feature-item i {
  color: var(--white);
  font-size: 0.95rem;
}

/* Premium Apple Precision CTA Button */
.btn-ultra-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  border-radius: 0px;
  color: var(--navy-deep);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #ffffff;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ultra-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0px;
  background: rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.btn-ultra-cta:hover {
  transform: translateY(-2px);
  background: #f1f5f9;
  border-color: #f1f5f9;
  color: var(--navy-deep);
}

.btn-ultra-cta:hover::after {
  opacity: 1;
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.arrow-wrap {
  width: 28px;
  height: 28px;
  border-radius: 0px;
  background: var(--navy-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, color 0.35s ease;
}

.btn-ultra-cta:hover .arrow-wrap {
  transform: translateX(4px);
  background: var(--navy-deep);
  color: var(--white);
}
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-main, .bento-photo, .bento-stat:nth-child(3), .bento-stat:nth-child(4) {
    grid-column: 1 / -1; grid-row: auto;
  }
}

/* ---------- Contact Dedicated Page ---------- */
.contact-page-main {
  padding-top: 100px;
  background: var(--bg-light);
  min-height: 90vh;
}
.contact-hero-section {
  padding: 60px 24px 100px;
}
.contact-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.contact-header-content {
  text-align: center;
  margin-bottom: 48px;
}
.contact-page-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
  margin-bottom: 16px;
}
.contact-page-lead {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.8;
}

.contact-form-card {
  background: var(--white);
  border-radius: 0px;
  padding: 48px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 8px;
}
.badge-req {
  background: var(--navy-deep);
  color: var(--white);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 0px;
  font-weight: 600;
}
.badge-opt {
  background: #94a3b8;
  color: var(--white);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 0px;
  font-weight: 600;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 0px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy-deep);
  background: var(--white);
}
textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-alert {
  padding: 16px 20px;
  border-radius: 0px;
  margin-bottom: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-alert.error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}
.form-alert.success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.privacy-consent {
  font-size: 0.92rem;
  color: var(--text-sub);
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  cursor: pointer;
}
.inline-link {
  color: var(--navy);
  text-decoration: underline;
  font-weight: 600;
}

.btn-submit {
  padding: 16px 48px;
  font-size: 1.02rem;
  border-radius: 0px;
  border: 1px solid var(--navy);
}

.contact-direct-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.info-card {
  background: var(--white);
  padding: 24px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 0px;
  background: #f1f5f9;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.info-card p {
  font-size: 0.9rem;
  color: var(--text-sub);
}
.direct-link {
  color: var(--navy);
  font-weight: 700;
}
.direct-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-form-card { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-direct-info { grid-template-columns: 1fr; }
}

/* ---------- Privacy Policy Dedicated Page ---------- */
.privacy-page-main {
  padding-top: 100px;
  background: linear-gradient(180deg, #fdfdfd 0%, #f4f7fb 100%);
  min-height: 90vh;
}
.privacy-hero-section {
  padding: 60px 24px 100px;
}
.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy-header {
  text-align: center;
  margin-bottom: 48px;
}
.privacy-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--navy-deep);
  margin-bottom: 16px;
}
.privacy-lead {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.8;
}
.privacy-content-card {
  background: var(--white);
  border-radius: 0px;
  padding: 48px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.policy-section h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--bg-blue);
}
.policy-section p {
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.85;
}
.policy-section ul {
  margin-top: 12px;
  padding-left: 24px;
}
.policy-section li {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 8px;
}
.shadow-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0px;
  padding: 20px 24px;
  margin-top: 12px;
}
.contact-company-name {
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.privacy-back-action {
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .privacy-content-card { padding: 28px 20px; }
}

/* ---------- FAQ Dedicated Page Styling ---------- */
.faq-page-main {
  padding-top: 100px;
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
  min-height: 90vh;
}
.faq-hero-section {
  padding: 60px 24px 100px;
  position: relative;
}
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}
.faq-title-head {
  text-align: center;
  margin-bottom: 40px;
}
.faq-main-title {
  font-family: var(--font-en);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.faq-main-title .q-blue { color: #0F3875; }
.faq-main-title .amp-gray { color: #94A3B8; font-weight: 300; }
.faq-main-title .a-orange { color: #F5A623; }

.faq-sub-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F3875;
  letter-spacing: 0.12em;
  margin-top: 6px;
}
.faq-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  position: relative;
}
.faq-title-divider::before,
.faq-title-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #CBD5E1, transparent);
}
.star-mark {
  color: var(--gold);
  font-size: 0.85rem;
  margin: 0 12px;
}

/* Category Tabs */
.faq-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
/* Category Tabs - Sharp Hairline Buttons */
.faq-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.faq-tab-btn {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--navy);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 24px;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-tab-btn:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}
.faq-tab-btn.active {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}

/* 3-Column Cards Grid - Sharp Square Cards */
.faq-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.faq-card-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  padding: 44px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  position: relative;
}
.faq-card-item:hover {
  transform: translateY(-4px);
  border-color: var(--navy-deep);
}

.faq-q-badge {
  width: 44px;
  height: 44px;
  border-radius: 0px;
  background: var(--navy-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.faq-card-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-card-divider {
  width: 28px;
  height: 1px;
  background: var(--navy);
  border-radius: 0px;
  margin-bottom: 20px;
}

.faq-card-answer {
  font-size: 0.93rem;
  color: #334155;
  line-height: 1.85;
  text-align: justify;
  text-justify: inter-character;
  margin: 0;
}

/* Bottom CTA */
.faq-bottom-cta {
  background: var(--white);
  border-radius: 0px;
  padding: 48px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}
.cta-inner h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.cta-inner p {
  font-size: 1rem;
  color: var(--text-sub);
  margin-bottom: 28px;
}

@media (max-width: 1024px) {
  .faq-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .faq-cards-grid {
    grid-template-columns: 1fr;
  }
  .faq-card-item {
    padding: 36px 24px;
  }
  .faq-bottom-cta {
    padding: 32px 20px;
  }
}

/* ---------- Company Dedicated Page Styling (Redesigned) ---------- */
.company-page-main {
  padding-top: 100px;
  background: var(--bg-light);
  min-height: 90vh;
}
.company-hero-section {
  padding: 50px 24px 100px;
  position: relative;
}
.company-bg-glow {
  display: none;
}
.company-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.company-page-header {
  margin-bottom: 40px;
}
.company-page-header .eyebrow {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 6px;
}
.company-main-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
}

/* 2-Column Main Split Grid */
.company-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

/* Left Column: Brand Header Card & Icon Info List */
.company-brand-card {
  background: var(--white);
  border-radius: 0px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
}
.company-logo-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.logo-mark-container {
  width: 56px;
  height: 56px;
  border-radius: 0px;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E2E8F0;
  flex-shrink: 0;
}
.brand-text-group {
  display: flex;
  flex-direction: column;
}
.company-brand-name {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--navy-deep);
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.company-sub-brand {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-catch-title {
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.55;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 2px solid var(--navy-deep);
}
.company-mission-desc {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.8;
}

/* Info List Wrap */
.company-info-card-wrap {
  background: var(--white);
  border-radius: 0px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.info-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E2E8F0;
}
.company-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px;
  border-radius: 0px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.info-item:hover {
  background: #FFFFFF;
  border-color: var(--navy-deep);
  transform: translateX(4px);
}
.item-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 0px;
  background: #F1F5F9;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.item-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748B;
}
.item-value {
  font-size: 0.95rem;
  color: #1E293B;
  font-weight: 600;
}
.item-value.font-bold {
  font-weight: 800;
  color: var(--navy-deep);
}

/* Right Column: Founders Profiles */
.founders-header {
  margin-bottom: 32px;
}
.founders-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 4px;
}
.founders-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.founders-lead {
  font-size: 0.92rem;
  color: #64748B;
}

.founders-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.founder-card-premium {
  background: var(--white);
  border-radius: 0px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}
.founder-card-premium:hover {
  transform: translateY(-4px);
  border-color: var(--navy-deep);
}

.founder-card-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  background: var(--navy-deep);
  padding: 4px 12px;
  border-radius: 0px;
  letter-spacing: 0.04em;
}

.founder-photo-box {
  width: 130px;
  height: 155px;
  border-radius: 0px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  position: relative;
}
.founder-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.founder-card-premium:hover .founder-photo-box img {
  transform: scale(1.05);
}

.founder-card-content {
  flex: 1;
}
.founder-name-group {
  margin-bottom: 12px;
}
.founder-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 2px;
}
.founder-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-sub);
}

.founder-message {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.75;
  background: #F8FAFC;
  padding: 14px 16px;
  border-radius: 0px;
  border-left: 2px solid var(--navy-deep);
  margin: 0;
}

/* Bottom Banner */
.company-bottom-banner {
  background: var(--navy-deep);
  border-radius: 0px;
  padding: 60px 40px;
  color: var(--white);
  text-align: center;
}
.banner-content {
  max-width: 720px;
  margin: 0 auto;
}
.star-sparkle {
  color: var(--white);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 14px;
}
.slogan-main {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.slogan-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}
.banner-cta {
  display: flex;
  justify-content: center;
}
.btn-banner-contact {
  padding: 16px 40px;
  font-size: 1.05rem;
  border-radius: 0px;
  background: #ffffff;
  color: #000000;
}

@media (max-width: 900px) {
  .company-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-card-premium {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 50px;
  }
  .founder-photo-box {
    width: 160px;
    height: 190px;
  }
  .founder-message {
    text-align: left;
  }
}

/* ---------- MapLibre GL JS Vector Tile Precision Scrollytelling Section ---------- */
.real-map-section-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 300vh;
  height: 300svh;
  background: #f8fafc;
  z-index: 10;
  --map-header-safe: 72px;
}

.real-map-sticky-container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MapLibre GL 100% Vector Tile Map Canvas */
.maplibre-map-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #e7ecef;
  isolation: isolate;
}

.maplibregl-canvas {
  outline: none !important;
}
.maplibregl-ctrl-bottom-left,
.maplibregl-ctrl-bottom-right,
.maplibregl-ctrl-top-left,
.maplibregl-ctrl-top-right {
  display: none !important; /* Apple Minimalist UI without clutter */
}

/* Top Indicator Bar */
.map-top-bar {
  position: absolute;
  top: calc(var(--map-header-safe) + 20px);
  left: 4vw;
  right: 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 25;
  font-family: var(--font-en);
  pointer-events: none;
}
.map-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.bar-num { color: #0284c7; }
.bar-sep { color: #cbd5e1; font-weight: 300; }
.bar-title { color: #0f172a; letter-spacing: 0.14em; font-size: 0.82rem; }

.map-bar-right {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: min(340px, 36vw);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.bar-phase-indicator {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #0284c7;
  transition: color 0.4s ease;
}

.map-route-progress {
  display: block;
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.12);
}
.map-route-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #0284c7 0%, #f59e0b 52%, #f97316 100%);
  will-change: transform;
}

/* Floating Information Panels */
.map-info-floating-panel {
  position: absolute;
  z-index: 20;
  width: 90%;
  max-width: 400px;
  will-change: transform, opacity, left, top;
  pointer-events: auto;
}

.panel-inner {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 0px;
  padding: 24px;
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.panel-inner:hover {
  border-color: #0f172a;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14);
}

.float-badge {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 0.72rem;
  color: #0284c7;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 6px;
}
.float-badge.orange {
  color: #f97316;
}

.float-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.float-coords {
  font-family: var(--font-en);
  font-size: 0.74rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.float-desc {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.65;
}

/* Photo Visual Slot inside Floating Panel */
.float-photo-box {
  margin-top: 14px;
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.float-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.float-photo-box:hover img {
  transform: scale(1.06);
}
.float-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.92) 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.float-photo-caption strong {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.float-photo-caption span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Positioning for Sri Lanka Floating Panel */
.srilanka-floating {
  left: 4vw;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), top 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.55s ease;
}
.srilanka-floating.moved-left {
  left: 4vw;
  top: clamp(166px, 22vh, 220px);
  transform: translate3d(0, 0, 0);
}
.srilanka-floating.is-dimmed {
  opacity: 0.68;
  transform: translate3d(0, -6px, 0);
}

/* Positioning for Japan Floating Panel */
.japan-floating {
  right: 4vw;
  bottom: clamp(44px, 7vh, 76px);
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.japan-floating.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Custom Pulsing Map Markers */
.custom-map-marker {
  position: relative;
}
.marker-dot-core {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0284c7;
  border: 2.5px solid #ffffff;
  box-shadow: 0 0 14px rgba(2, 132, 199, 0.9);
}
.marker-dot-core.orange {
  background: #f97316;
  box-shadow: 0 0 14px rgba(249, 115, 22, 0.9);
}
.marker-pulse-wave {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #0284c7;
  animation: leafPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.marker-pulse-wave.orange {
  border-color: #f97316;
}

@keyframes leafPulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Flight Head Particle Marker */
.particle-flight-head {
  transition: opacity 0.4s ease;
}

.map-data-credit {
  position: absolute;
  z-index: 30;
  left: 12px;
  bottom: 8px;
  padding: 3px 6px;
  background: rgba(255, 255, 255, 0.78);
  color: #64748b;
  font-family: var(--font-en);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.map-data-credit a {
  color: #334155;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 900px) {
  .real-map-section-wrapper {
    width: 100vw;
    height: 280vh;
    height: 280svh;
    margin-left: calc(-50vw + 50%);
  }
  .real-map-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
  }
  .map-top-bar {
    top: calc(var(--map-header-safe) + 10px);
    left: 16px;
    right: 16px;
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
  }
  .map-bar-left,
  .map-bar-right {
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    padding: 7px 10px;
  }
  .map-bar-right { width: 100%; }
  .bar-title { font-size: 0.68rem; letter-spacing: 0.1em; }
  .bar-phase-indicator { font-size: 0.64rem; }
  .map-info-floating-panel {
    width: auto;
    max-width: none;
    left: 16px !important;
    right: 16px !important;
    top: auto !important;
    bottom: 22px !important;
    transform: translate3d(0, 18px, 0) !important;
    opacity: 0;
  }
  .srilanka-floating,
  .srilanka-floating.moved-left {
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
  }
  .srilanka-floating.is-dimmed {
    opacity: 0;
    transform: translate3d(0, 18px, 0) !important;
    pointer-events: none;
  }
  .japan-floating.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
  }
  .panel-inner { padding: 16px; }
  .float-title { font-size: 1.06rem; }
  .float-desc {
    font-size: 0.78rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .float-photo-box { height: 92px; margin-top: 10px; }
  .map-data-credit { bottom: 4px; font-size: 9px; }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .map-info-floating-panel { max-width: 340px; }
  .srilanka-floating.is-dimmed {
    opacity: 0;
    pointer-events: none;
  }
}

/* ---------- Accessibility & Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  body { cursor: auto !important; }
  a, button, .btn, .service-card-horizontal, .kinetic-track { cursor: auto !important; }
  #custom-cursor { display: none !important; }
}

/* ==========================================================================
   Company Overview Page (Apple-Pro Infographics & Executive Showcase)
   ========================================================================== */
.company-page-main {
  background: #f8fafc;
  color: var(--color-slate-900);
  position: relative;
  padding-top: 100px;
}

.company-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Label Bar --- */
.section-label-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}
.section-label-num {
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: 0.1em;
}
.section-label-title {
  font-family: var(--font-en);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--color-slate-500);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* --- 1. Hero Section --- */
.company-hero-section {
  position: relative;
  padding: 60px 0 40px;
  text-align: left;
}
.company-hero-lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-slate-600);
  max-width: 800px;
  margin-top: 20px;
  font-weight: 500;
}

/* --- 2. Infographics Section --- */
.company-infographics-section {
  padding: 60px 0;
}
.company-infographic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 768px) {
  .company-infographic-grid {
    grid-template-columns: 1fr;
  }
}

.infographic-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 36px 32px;
  border-radius: 0px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.infographic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: #0284c7;
}
.infographic-card.highlight {
  background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
  border-color: rgba(249, 115, 22, 0.3);
}

.card-metric-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.metric-tag {
  font-family: var(--font-en);
  font-size: 0.725rem;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: 0.15em;
  background: rgba(2, 132, 199, 0.08);
  padding: 4px 10px;
  border-radius: 0px;
}
.metric-tag.orange {
  color: #f97316;
  background: rgba(249, 115, 22, 0.08);
}

.metric-number-wrap {
  display: flex;
  align-items: baseline;
  font-family: var(--font-en);
}
.counter {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-slate-900);
  line-height: 1;
  letter-spacing: -0.04em;
}
.metric-decimal {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f97316;
  line-height: 1;
}
.metric-unit {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-slate-600);
  margin-left: 4px;
}

.metric-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 10px;
}
.metric-desc {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--color-slate-600);
}

/* Metric Bars & Badges */
.metric-bar-bg {
  width: 100%;
  height: 6px;
  background: #f1f5f9;
  margin-top: 24px;
  overflow: hidden;
}
.bar-animate {
  height: 100%;
  background: linear-gradient(90deg, #0284c7 0%, #38bdf8 100%);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.metric-badge-list {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.infographic-badge {
  font-size: 0.75rem;
  font-family: var(--font-en);
  font-weight: 700;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 6px 12px;
}
.infographic-badge.orange {
  color: #f97316;
  background: #fff7ed;
  border-color: rgba(249, 115, 22, 0.2);
}

.sector-icon-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.sector-chip {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-slate-800);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.metric-gauge-indicator {
  width: 100%;
  height: 6px;
  background: #f1f5f9;
  margin-top: 24px;
  position: relative;
}
.gauge-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 98.4%;
  height: 100%;
  background: linear-gradient(90deg, #f97316 0%, #fbbf24 100%);
}

/* --- 3. Apple Spec Sheet Section --- */
.company-spec-section {
  padding: 60px 0;
}
.apple-spec-sheet-grid {
  border-top: 1px solid #e2e8f0;
}
.spec-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  padding: 24px 16px;
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.3s ease;
}
.spec-row:hover {
  background: #ffffff;
}
@media (max-width: 640px) {
  .spec-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.spec-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-slate-500);
}
.spec-value {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-slate-900);
}
.location-duo {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.inline-spec-link {
  color: #0284c7;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.inline-spec-link:hover {
  color: #f97316;
  text-decoration: underline;
}

/* --- 4. Executive Showcase Section --- */
.company-executive-section {
  padding: 70px 0;
}
.executive-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 868px) {
  .executive-showcase-grid {
    grid-template-columns: 1fr;
  }
}

.executive-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
  transition: all 0.4s ease;
}
.executive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
  border-color: #0284c7;
}

.executive-image-wrap {
  position: relative;
  width: 100%;
  height: 430px;
  background: #f1f5f9;
  overflow: hidden;
}
.executive-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.6s ease;
}
@media (max-width: 640px) {
  .executive-image-wrap {
    height: 360px;
  }
}
.executive-card:hover .executive-image-wrap img {
  transform: scale(1.04);
}
.executive-image-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
}
.executive-region-tag {
  font-size: 0.725rem;
  font-family: var(--font-en);
  font-weight: 800;
  color: #ffffff;
  background: rgba(2, 132, 199, 0.9);
  padding: 6px 14px;
  backdrop-filter: blur(8px);
}
.executive-region-tag.orange {
  background: rgba(249, 115, 22, 0.9);
}

.executive-body {
  padding: 32px 28px;
}
.executive-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0284c7;
  display: block;
  margin-bottom: 6px;
}
.executive-role.orange {
  color: #f97316;
}
.executive-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-slate-900);
  margin-bottom: 16px;
}
.executive-quote {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-slate-700);
  font-style: italic;
  padding-left: 16px;
  border-left: 3px solid #0284c7;
  margin-bottom: 24px;
}
.executive-card:nth-child(2) .executive-quote {
  border-left-color: #f97316;
}

.executive-stat-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}
.mini-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-slate-400);
  letter-spacing: 0.1em;
}
.mini-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-slate-800);
}

/* --- 5. CTA Section & Light Framed Card --- */
.company-cta-section {
  padding: 60px 0 100px;
}

.company-cta-banner.light-theme-frame {
  position: relative;
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 64px 48px;
  border-radius: 0px;
  border: 1px solid #e2e8f0;
  outline: 1px solid rgba(2, 132, 199, 0.12);
  outline-offset: -6px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05), 0 2px 8px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.company-cta-banner.light-theme-frame:hover {
  border-color: #cbd5e1;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.light-ambient-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.06) 0%, rgba(245, 156, 26, 0.04) 40%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-badge.light-badge {
  font-family: var(--font-en, 'Inter', sans-serif);
  font-size: 0.75rem;
  font-weight: 800;
  color: #0284c7 !important;
  letter-spacing: 0.15em;
  border: 1px solid rgba(2, 132, 199, 0.3);
  background: rgba(2, 132, 199, 0.06);
  padding: 5px 16px;
}

.cta-main-title.light-title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.45;
  color: #0f172a !important;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.cta-sub-desc.light-desc {
  font-size: 1.05rem;
  color: #475569 !important;
  margin-bottom: 36px;
  max-width: 720px;
  line-height: 1.7;
}

.btn-cta-light-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #0284c7 0%, #1155a9 100%) !important;
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0px;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cta-light-primary:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0f4185 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.4);
}

.btn-cta-light-primary i {
  transition: transform 0.3s ease;
}

.btn-cta-light-primary:hover i {
  transform: translateX(6px);
}
}

/* ==========================================================================
   Message & Vision Page (Exact UI Reproduction with 3D Isometric Pathway)
   ========================================================================== */
.message-page-main {
  background: #ffffff;
  color: var(--color-slate-900);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.message-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- 1. Message Hero Section --- */
.message-hero-section {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 18%, #e0f2fe 50%, #f0f9ff 78%, #ffffff 100%);
  overflow: hidden;
  min-height: calc(100vh - 80px);
}

.hero-split-layout {
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: flex-start;
  gap: 0px;
  position: relative;
  padding-top: 20px;
}
@media (max-width: 960px) {
  .hero-split-layout {
    grid-template-columns: 1fr;
  }
}

.hero-text-col {
  position: relative;
  z-index: 10;
  padding-right: 20px;
}

.hero-eyebrow-tag {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0284c7;
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-main-heading {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.28;
  color: #0f172a;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .hero-main-heading {
    font-size: 2.5rem;
  }
}

.hero-desc-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 32px;
  font-weight: 500;
}

.btn-vision-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0066cc;
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 0px;
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-vision-primary:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.4);
}

/* Authentic Dynamic 3D Isometric Pathway Layout (Restored Best Position!) */
.hero-graphic-col {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: flex;
  align-items: flex-start;
}

.isometric-seamless-wrapper {
  position: absolute;
  left: -330px;
  top: -45px;
  width: 1170px;
  max-width: none;
  pointer-events: none;
}

.hero-pathway-transparent-img {
  width: 100%;
  height: auto;
  display: block;
  filter: none !important;
  transform: scale(1.15) rotate(-1deg);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Gentle Floating Keyframe Animation */
@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
}

/* --- 2. Vision Cards Section (01 & 02) --- */
.vision-cards-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

.vision-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.vision-card-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
  padding: 56px 48px;
  transition: all 0.4s ease;
}
.vision-card-row:hover {
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border-color: #0284c7;
}
@media (max-width: 868px) {
  .vision-card-row {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 32px;
  }
}

.vision-card-left {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
@media (max-width: 640px) {
  .vision-card-left {
    flex-direction: column;
    gap: 16px;
  }
}

.card-num-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.num-text {
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 800;
  color: #0066cc;
  line-height: 1;
  letter-spacing: -0.03em;
}
.num-line-accent {
  width: 44px;
  height: 4px;
  background: #ff9900;
  margin-top: 10px;
}

.card-heading-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.4;
  color: #0f172a;
  margin-bottom: 16px;
}

.card-desc-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
}

.vision-card-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------- Card 01: 3D Interactive Globe Container ---------- */
.interactive-globe-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, rgba(2, 132, 199, 0.08) 0%, transparent 70%);
  border-radius: 24px;
}

#vision-globe-canvas {
  width: 360px;
  height: 360px;
  display: block;
  z-index: 2;
  cursor: grab;
}

.globe-overlay-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 3;
}

.globe-center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 240px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, rgba(245, 158, 11, 0.1) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.orbit-ring.ring-1 {
  width: 340px;
  height: 120px;
  margin-top: -60px;
  margin-left: -170px;
  transform: rotateX(70deg) rotateY(-20deg) rotateZ(15deg);
  animation: orbitRotate1 20s linear infinite;
}

.orbit-ring.ring-2 {
  width: 370px;
  height: 140px;
  margin-top: -70px;
  margin-left: -185px;
  transform: rotateX(65deg) rotateY(35deg) rotateZ(-25deg);
  animation: orbitRotate2 26s linear infinite reverse;
}

.orbit-ring.ring-3 {
  width: 310px;
  height: 100px;
  margin-top: -50px;
  margin-left: -155px;
  border-color: rgba(2, 132, 199, 0.55);
  transform: rotateX(75deg) rotateY(10deg) rotateZ(45deg);
  animation: orbitRotate1 16s linear infinite;
}

@keyframes orbitRotate1 {
  0% { transform: rotateX(70deg) rotateY(-20deg) rotateZ(0deg); }
  100% { transform: rotateX(70deg) rotateY(-20deg) rotateZ(360deg); }
}

@keyframes orbitRotate2 {
  0% { transform: rotateX(65deg) rotateY(35deg) rotateZ(0deg); }
  100% { transform: rotateX(65deg) rotateY(35deg) rotateZ(360deg); }
}

/* ---------- Card 02: Animated Handshake Container ---------- */
.animated-handshake-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.08) 0%, rgba(2, 132, 199, 0.06) 50%, transparent 70%);
  border-radius: 24px;
  overflow: hidden;
}

.handshake-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 220px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.25) 0%, rgba(2, 132, 199, 0.15) 50%, transparent 75%);
  filter: blur(25px);
}

.handshake-svg-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.handshake-svg {
  width: 100%;
  height: 100%;
  max-height: 320px;
  overflow: visible;
}

/* Handshake Animations */
.hand-left-wrap {
  animation: handLeftReach 3.6s ease-in-out infinite alternate;
  transform-origin: 50px 200px;
}

.hand-right-wrap {
  animation: handRightReach 3.6s ease-in-out infinite alternate;
  transform-origin: 450px 200px;
}

@keyframes handLeftReach {
  0% {
    transform: translateX(-14px) translateY(4px) rotate(-2deg);
  }
  50% {
    transform: translateX(0px) translateY(-3px) rotate(1deg);
  }
  100% {
    transform: translateX(-8px) translateY(2px) rotate(-1deg);
  }
}

@keyframes handRightReach {
  0% {
    transform: translateX(14px) translateY(4px) rotate(2deg);
  }
  50% {
    transform: translateX(0px) translateY(-3px) rotate(-1deg);
  }
  100% {
    transform: translateX(8px) translateY(2px) rotate(1deg);
  }
}

/* Connection Energy Pulsing Rings */
.energy-ring {
  fill: none;
  stroke: #f59e0b;
  stroke-width: 1.5px;
  opacity: 0;
  transform-origin: center;
}

.ring-wave-1 {
  animation: energyPulseWave 2.4s ease-out infinite;
}

.ring-wave-2 {
  animation: energyPulseWave 2.4s ease-out 0.8s infinite;
}

.ring-wave-3 {
  animation: energyPulseWave 2.4s ease-out 1.6s infinite;
}

@keyframes energyPulseWave {
  0% {
    r: 8px;
    opacity: 0.9;
    stroke: #f59e0b;
  }
  50% {
    opacity: 0.5;
    stroke: #0284c7;
  }
  100% {
    r: 65px;
    opacity: 0;
    stroke: #38bdf8;
  }
}

.energy-core {
  fill: #ffffff;
  stroke: #f59e0b;
  stroke-width: 3px;
  filter: drop-shadow(0 0 10px #f59e0b);
  animation: corePulse 1.8s ease-in-out infinite alternate;
}

@keyframes corePulse {
  0% {
    transform: scale(0.85);
    fill: #ffffff;
  }
  100% {
    transform: scale(1.15);
    fill: #fef08a;
  }
}

.sparkle-ray {
  stroke: #f59e0b;
  stroke-width: 2.5px;
  stroke-linecap: round;
  animation: sparkleTwinkle 1.6s ease-in-out infinite alternate;
}

.sparkle-ray.r1, .sparkle-ray.r3, .sparkle-ray.r6 {
  animation-delay: 0.3s;
}

.sparkle-ray.r2, .sparkle-ray.r4, .sparkle-ray.r8 {
  animation-delay: 0.7s;
}

@keyframes sparkleTwinkle {
  0% {
    opacity: 0.3;
    stroke-width: 1.5px;
  }
  100% {
    opacity: 1;
    stroke-width: 3px;
    stroke: #fbbf24;
  }
}

/* Partnership SVG Labels */
.partnership-label .label-heading {
  font-family: var(--font-en, 'Outfit', sans-serif);
  font-size: 14px;
  font-weight: 800;
  fill: #0f3875;
  letter-spacing: 0.18em;
}

.partnership-label .label-sub {
  font-family: var(--font-en, 'Outfit', sans-serif);
  font-size: 11px;
  font-weight: 600;
  fill: #f59e0b;
  letter-spacing: 0.1em;
}

/* --- 3. Bottom Slogan Section --- */
.message-footer-slogan-section {
  padding: 90px 0 120px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  text-align: center;
}

.slogan-center-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slogan-heading {
  font-size: 2.4rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.slogan-accent-line {
  width: 60px;
  height: 4px;
  background: #ff9900;
  margin-bottom: 32px;
}

/* ---------- Signature Handwriting Animation ---------- */
.slogan-signature-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.signature-svg {
  width: 360px;
  height: 95px;
  overflow: visible;
}

.signature-text-stroke {
  font-family: 'Great Vibes', 'Alex Brush', cursive;
  font-size: 60px;
  font-weight: 400;
  fill: none;
  stroke: #0f3875;
  stroke-width: 1.8px;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: writeSignature 2.8s cubic-bezier(0.35, 0, 0.25, 1) forwards;
}

.signature-text-fill {
  font-family: 'Great Vibes', 'Alex Brush', cursive;
  font-size: 60px;
  font-weight: 400;
  fill: #0f3875;
  opacity: 0;
  animation: fadeInSignatureFill 0.9s ease 2.2s forwards;
}

.signature-underline {
  fill: none;
  stroke: #ff9900;
  stroke-width: 2.8px;
  stroke-linecap: round;
  stroke-dasharray: 350;
  stroke-dashoffset: 350;
  animation: drawSignatureUnderline 1.1s cubic-bezier(0.35, 0, 0.25, 1) 2.3s forwards;
}

@keyframes writeSignature {
  0% {
    stroke-dashoffset: 600;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeInSignatureFill {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes drawSignatureUnderline {
  0% {
    stroke-dashoffset: 350;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* ---------- Home Page Message Teaser Section ---------- */
.home-message-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, #0b2039 0%, #004b99 50%, #0284c7 100%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.home-message-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.message-teaser-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.message-teaser-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.message-teaser-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 0, 0.5);
}

.message-teaser-badge {
  display: inline-block;
  background: rgba(255, 153, 0, 0.2);
  border: 1px solid rgba(255, 153, 0, 0.6);
  color: #ffb84d;
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.message-teaser-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.message-teaser-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin-bottom: 36px;
}

.btn-message-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #0f172a !important;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-message-cta:hover {
  background: #ff9900;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(255, 153, 0, 0.4);
}

/* ---------- 02 News & Announcements Section ---------- */
.news-flat-section {
  position: relative;
  padding: 100px 0;
  background: #ffffff !important;
  color: #0f172a !important;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  z-index: 2;
}

.news-typography-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-size: 26vw;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.04) !important;
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
  user-select: none;
}

.news-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.news-header-block {
  margin-bottom: 40px;
}

.news-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.news-label .label-num {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 800;
  color: #0284c7 !important;
  opacity: 1 !important;
}

.news-label .label-divider {
  color: #cbd5e1 !important;
  opacity: 1 !important;
}

.news-label .label-text {
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #0284c7 !important;
  opacity: 1 !important;
}

.news-main-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a !important;
  letter-spacing: -0.02em;
}

.news-list-flat {
  border-top: 1px solid #e2e8f0;
}

.news-item-row {
  display: grid;
  grid-template-columns: 240px 1fr 40px;
  align-items: center;
  padding: 24px 12px;
  border-bottom: 1px solid #e2e8f0;
  text-decoration: none;
  background-color: transparent;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.news-item-row:hover {
  background-color: #f8fafc !important;
  transform: translateX(4px);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.news-date {
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 700;
  color: #475569 !important;
}

.news-category {
  font-size: 0.725rem;
  font-family: var(--font-en);
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 0px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-category.tag-press {
  background: rgba(2, 132, 199, 0.12) !important;
  color: #0284c7 !important;
}

.news-category.tag-info {
  background: rgba(245, 158, 11, 0.12) !important;
  color: #d97706 !important;
}

.news-category.tag-event {
  background: rgba(16, 185, 129, 0.12) !important;
  color: #059669 !important;
}

.news-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a !important;
  line-height: 1.6;
  margin: 0;
  transition: color 0.2s ease;
}

.news-item-row:hover .news-item-title {
  color: #0284c7 !important;
}

.news-item-arrow {
  display: flex;
  justify-content: flex-end;
  color: #64748b !important;
  font-size: 0.9rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.news-item-row:hover .news-item-arrow {
  transform: translateX(6px);
  color: #0284c7 !important;
}

.news-more-action {
  margin-top: 40px;
  text-align: center;
}

.btn-news-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-news-outline:hover {
  border-color: #0284c7;
  color: #0284c7;
  background: #f0f9ff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .news-item-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 8px;
  }
  .news-item-arrow {
    display: none;
  }
}

/* ---------- Modern 2-Column Split News Section (Image Matching) ---------- */
.news-split-section {
  position: relative;
  padding: 100px 24px;
  background: #ffffff !important;
  color: #0f172a !important;
  z-index: 2;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.news-split-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left Column */
.news-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-heading-group {
  margin-bottom: 28px;
}

.news-title-en {
  font-family: var(--font-en, 'Inter', sans-serif);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1;
  color: #5b36f5 !important; /* Vibrant Indigo / Electric Purple matching image */
  letter-spacing: -0.03em;
  margin: 0 0 10px 0;
}

.news-title-jp {
  font-size: 1.15rem;
  font-weight: 700;
  color: #00b4b4 !important; /* Vivid Cyan / Teal matching image */
  margin: 0;
  letter-spacing: 0.05em;
}

.news-action-wrap {
  margin-top: 4px;
}

.btn-news-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  padding: 10px 30px;
  border-radius: 9999px; /* Pill shape */
  background: #5b36f5 !important;
  color: #ffffff !important;
  font-family: var(--font-en, 'Inter', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(91, 54, 245, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-news-more:hover {
  background: #4622e0 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(91, 54, 245, 0.35);
}

/* Right Column (News List) */
.news-right-col {
  width: 100%;
}

.news-list-clean {
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.news-clean-item {
  display: flex;
  align-items: center;
  padding: 28px 12px;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.news-clean-item:last-child {
  border-bottom: none;
}

.news-clean-item:hover {
  background-color: #f8fafc;
  transform: translateX(4px);
}

.news-clean-date {
  width: 180px;
  flex-shrink: 0;
  font-family: var(--font-en, 'Inter', sans-serif);
  font-size: 0.925rem;
  font-weight: 500;
  color: #64748b !important;
  letter-spacing: 0.04em;
}

.news-clean-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  color: #334155 !important;
  line-height: 1.65;
  transition: color 0.2s ease;
}

.news-clean-item:hover .news-clean-title {
  color: #5b36f5 !important;
}

/* Responsive breakpoint */
@media (max-width: 860px) {
  .news-split-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .news-title-en {
    font-size: 3.2rem;
  }
  .news-clean-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 8px;
  }
  .news-clean-date {
    width: auto;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Corporate Infographic Architecture (Step 01 - 03 & Mission Philosophy)
   Compact Viewport High-Precision Flat Design
   ========================================================================== */
.corp-infographic-wrapper {
  position: relative;
  z-index: 1;
  padding: 10px 0;
}
.corp-infographic-wrapper::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 700px;
  height: 700px;
  background: url('/static/images/miraiway-pathway-transparent.png') no-repeat center right / contain;
  opacity: 0.65;
  pointer-events: none;
  z-index: -1;
}
.corp-infographic-wrapper::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -120px;
  width: 700px;
  height: 700px;
  background: url('/static/images/miraiway-pathway-transparent.png') no-repeat center left / contain;
  opacity: 0.5;
  transform: rotate(180deg);
  pointer-events: none;
  z-index: -1;
}

.corp-infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
  background: #e2e8f0;
  border: 1px solid #e2e8f0;
}

@media (max-width: 900px) {
  .corp-infographic-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
}

/* Infographic Card Base */
.corp-step-card {
  position: relative;
  min-height: 320px;
  padding: 34px 30px 40px;
  border: 0;
  background: #ffffff;
  box-shadow: none;
  transition: background 0.35s ease, color 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  cursor: default;
}

.corp-step-card:hover {
  background: #0f172a !important;
  border-color: #0f172a !important;
  transform: none;
  box-shadow: none;
}

/* Top Header Bar */
.step-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 0;
  margin-bottom: 28px;
  border-bottom: none;
}

.step-badge {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 800;
  color: #ffffff;
  background: #0f172a;
  padding: 5px 9px;
  border-radius: 0px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.35s ease, color 0.35s ease;
}

.corp-step-card:hover .step-badge {
  color: #0f172a;
  background: #ffffff;
}

.step-eyebrow {
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
  transition: color 0.35s ease;
}

.num-display {
  font-family: var(--font-en);
  font-size: 4.5rem;
  font-weight: 900;
  color: #0284c7;
  line-height: 0.9;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 16px;
  transition: color 0.35s ease, -webkit-text-stroke 0.35s ease;
}

.corp-step-card:hover .num-display {
  color: transparent !important;
  -webkit-text-stroke: 1.5px #38bdf8;
}

.step-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  transition: color 0.35s ease;
}

.corp-step-card:hover .step-card-title {
  color: #ffffff;
}

.step-card-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.85;
  margin: 0;
  transition: color 0.35s ease;
}

.corp-step-card:hover .step-card-desc,
.corp-step-card:hover .step-eyebrow {
  color: #cbd5e1;
}

.step-corner {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: #cbd5e1;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  transition: color 0.35s ease;
}

.corp-step-card:hover .step-corner {
  color: #475569;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.775rem;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.3s ease;
}

.corp-step-card:hover .check-item {
  color: #f1f5f9;
}

.check-icon {
  color: #0284c7;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.corp-step-card:hover .check-icon {
  color: #38bdf8;
}

.corp-step-card:hover .check-icon.emerald {
  color: #34d399;
}

/* Mission / Philosophy Banner Card (Compact High Precision) */
.corp-mission-banner {
  background: #0f172a;
  color: #ffffff;
  border: 1px solid #1e293b;
  border-top: 2px solid #0284c7;
  padding: 24px 28px;
  border-radius: 0px;
  position: relative;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
  margin-top: 16px;
}

.mission-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid #334155;
}

.mission-badge {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 800;
  color: #ffffff;
  background: #0284c7;
  padding: 3px 10px;
  border-radius: 0px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-eyebrow {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-main-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.45;
  color: #ffffff;
  margin-bottom: 18px;
}

.mission-main-title .highlight-sky {
  color: #38bdf8;
  font-weight: 900;
}

.mission-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .mission-values-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.value-item-box {
  border-left: 2.5px solid #0284c7;
  padding-left: 12px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.value-item-box.slate-border {
  border-left-color: #334155;
}

.value-item-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.value-item-desc {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

.btn-corporate-mission {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  background: #ffffff;
  color: #0f172a !important;
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-corporate-mission:hover {
  background: #f8fafc;
  color: #0284c7 !important;
  transform: translateY(-1px);
}

.btn-corporate-mission i {
  transition: transform 0.25s ease;
}

.btn-corporate-mission:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   Kinetic Background & Marquee Typography System
   ========================================================================== */

/* Keyframes for seamless scrolling */
@keyframes marqueeScrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* 1. Services Section Background Kinetic Text */
#services-section {
  position: relative;
  overflow: hidden;
}

.bg-kinetic-text-wrap {
  position: absolute;
  top: 8%;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.bg-kinetic-text-track {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-en);
  font-size: clamp(6rem, 13vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(15, 23, 42, 0.05);
  animation: marqueeScrollLeft 45s linear infinite;
  will-change: transform;
}

/* 2. Map Section Kinetic Overlay Text */
.map-kinetic-text-wrap {
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.map-kinetic-text-track {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-en);
  font-size: clamp(4.5rem, 9vw, 9rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.04);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  animation: marqueeScrollLeft 50s linear infinite;
  will-change: transform;
}

/* 3. Dual-Line Counter-Flowing Marquee Divider */
.dual-kinetic-divider {
  width: 100%;
  padding: 36px 0;
  background: #0f172a;
  overflow: hidden;
  user-select: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 50px 0;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
}

.kinetic-line {
  width: 100%;
  overflow: hidden;
}

.kinetic-line .line-track {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  will-change: transform;
}

.kinetic-line.line-left .line-track {
  color: rgba(255, 255, 255, 0.12);
  animation: marqueeScrollLeft 30s linear infinite;
}

.kinetic-line.line-right .line-track {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(56, 189, 248, 0.3);
  animation: marqueeScrollRight 35s linear infinite;
}

/* ==========================================================================
   Dedicated News List Page (Faithful Reproduction of Screenshot Design)
   ========================================================================== */
.news-page-main {
  background: #F8FAFC;
  min-height: 80vh;
  padding-top: 100px;
}

.news-page-hero {
  padding: 50px 0 30px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.news-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.news-hero-en {
  font-family: var(--font-en);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #DC2626; /* Crimson Red Accent from Screenshot */
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0;
}

.news-hero-jp {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin: 10px 0 0;
}

.news-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #64748B;
}

.crumb-icon-link {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.crumb-icon-link:hover {
  color: #DC2626;
}

.crumb-sep {
  color: #94A3B8;
  font-size: 0.75rem;
}

.crumb-current {
  background: #E2E8F0;
  color: #334155;
  padding: 4px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
}

/* News List Items */
.news-page-list-section {
  padding: 50px 0 80px;
  background: #F8FAFC;
}

.news-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.news-page-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #E2E8F0;
}

.news-page-item {
  display: grid;
  grid-template-columns: 110px 1fr 40px;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid #E2E8F0;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.news-page-item:hover {
  background: rgba(255, 255, 255, 0.6);
}

.news-item-date-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-item-year-month {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 800;
  color: #DC2626;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 4px;
}

.news-item-day {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 900;
  color: #DC2626;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.news-item-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-item-cat {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 800;
  color: #DC2626;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cat-diamond-icon {
  font-size: 0.65rem;
  color: #DC2626;
}

.news-item-title-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.6;
  margin: 0;
  transition: color 0.25s ease;
}

.news-page-item:hover .news-item-title-text {
  color: #DC2626;
}

.news-item-arrow-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.news-item-arrow-icon {
  font-size: 0.95rem;
  color: #DC2626;
  transition: transform 0.25s ease;
}

.news-page-item:hover .news-item-arrow-icon {
  transform: translateX(6px);
}

/* Pagination */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

.page-num-btn,
.page-nav-btn {
  background: transparent;
  border: none;
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 800;
  color: #64748B;
  cursor: pointer;
  padding: 6px 12px;
  transition: all 0.2s ease;
}

.page-num-btn.is-active {
  color: #DC2626;
  font-size: 1.25rem;
  font-weight: 900;
}

.page-num-btn:hover,
.page-nav-btn:hover {
  color: #DC2626;
}

@media (max-width: 768px) {
  .news-hero-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .news-page-item {
    grid-template-columns: 80px 1fr 30px;
    gap: 14px;
    padding: 20px 0;
  }
  .news-item-day {
    font-size: 2rem;
  }
  .news-item-title-text {
    font-size: 0.95rem;
  }
}

