/* ==============================================================
   TORABAS ONE — Production stylesheet
   RED × BLACK × WHITE  ／  勢い × 本物 × 明快
   Refined for release: reduced HUD ornaments, more corporate trust.
   ============================================================== */

:root {
  --red:       #E4002B;
  --red-dark:  #B00020;
  --red-ink:   #7A0018;
  --black:     #0A0A0A;
  --ink:       #14141A;
  --ink-2:     #2C2C33;
  --ink-dim:   rgba(20, 20, 26, 0.62);
  --ink-mute:  rgba(20, 20, 26, 0.38);
  --white:     #FFFFFF;
  --off-white: #F5F3EE;
  --paper:     #F8F5EE;
  --line:      #1c1c22;
  --line-2:    rgba(20, 20, 26, 0.14);
  --sans:      "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  --display:   "Anton", "Bebas Neue", "Noto Sans JP", Impact, sans-serif;
  --mono:      "Space Mono", "SFMono-Regular", ui-monospace, monospace;
  --maxw: 1440px;
  --pad:  clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--off-white); color: var(--ink); }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* Accessibility: skip link */
.skip-link {
  position: absolute;
  top: -40px; left: 0;
  padding: 8px 14px;
  background: var(--black);
  color: var(--white);
  z-index: 200;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
}
.skip-link:focus { top: 0; }

/* Focus ring for keyboard users */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* Subtle paper grain — global */
.paper-grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.08  0 0 0 0 0.1  0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  background: var(--white);
  border-bottom: 2px solid var(--black);
}
.nav__logo {
  display: flex; align-items: center; gap: 14px;
  font-weight: 700;
  color: var(--black);
}
.nav__lockup {
  height: 28px; width: auto; display: block; flex-shrink: 0;
  filter: brightness(0);
}
.nav__wordmark-jp {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--red);
  border-left: 2px solid var(--black);
  padding-left: 14px;
  line-height: 1;
}
.nav__links {
  display: flex; gap: 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-family: var(--sans);
}
.nav__links a {
  position: relative;
  color: var(--ink);
  padding: 2px 0;
  transition: color 0.25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav__links a:hover { color: var(--red); }
.nav__links a:hover::after,
.nav__links a.is-current::after { transform: scaleX(1); }
.nav__links a.is-current { color: var(--red); }

.nav__cta {
  padding: 11px 18px;
  background: var(--red);
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  border: 2px solid var(--red);
  display: inline-flex; align-items: center; gap: 8px;
}
.nav__cta::after { content: "→"; }
.nav__cta:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--red);
}

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border: 2px solid var(--black);
  background: var(--white);
  position: relative;
  z-index: 60;
  margin-left: 10px;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 18px; height: 2px;
  background: var(--black);
  position: absolute;
  transition: transform .25s;
}
.nav__toggle span::before { content: ""; top: -6px; left: 0; }
.nav__toggle span::after  { content: ""; top: 6px; left: 0; }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
  .nav__wordmark-jp { display: none; }
  .nav__links {
    position: fixed;
    top: 62px; left: 0; right: 0;
    display: flex !important;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 2px solid var(--black);
    padding: 0;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
    z-index: 55;
  }
  .nav__links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__links a {
    padding: 18px 24px;
    border-bottom: 1px solid var(--line-2);
    font-size: 14px;
    letter-spacing: 0.14em;
    color: var(--ink);
  }
  .nav__links .nav__cta-m {
    background: var(--red);
    color: var(--white);
    font-weight: 700;
  }
}

/* ================================================================
   SECTION BASE
   ================================================================ */
section {
  position: relative;
  padding: clamp(80px, 12vh, 140px) var(--pad);
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--red);
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 4px 10px 3px;
  background: var(--black);
  color: var(--white);
  text-transform: uppercase;
}
.chip--red { background: var(--red); }
.chip--outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
  padding: 3px 8px 2px;
}
.status {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 3px 8px 2px;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.status--now { background: var(--red); color: var(--white); }
.status--dev { background: var(--ink); color: var(--white); }
.status--planning { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(0.16,1,0.3,1), transform .8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }
.reveal--delay-4 { transition-delay: .32s; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  position: relative;
  background: var(--off-white);
  display: flex;
  align-items: flex-end;
}
.hero__bar {
  position: absolute;
  top: 0; right: -5%;
  width: 34%;
  height: 100%;
  background: var(--red);
  z-index: 1;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(to right, rgba(20,20,26,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20,20,26,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__truck {
  position: absolute;
  right: 0; bottom: 0;
  width: 62%;
  max-width: 1200px;
  z-index: 2;
  height: 78vh;
  background-image: url("assets/hero-truck-night.jpg");
  background-size: cover;
  background-position: center 55%;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.15) brightness(0.85);
  mask-image: linear-gradient(to right, transparent 0%, black 20%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 100%);
}
.hero__truck::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 60% 50%, transparent 50%, rgba(228,0,43,0.32) 100%);
  mix-blend-mode: screen;
}

.hero__inner {
  position: relative;
  z-index: 3;
  padding: 120px var(--pad) 100px;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.hero__inner > * { max-width: 66%; }
.hero__inner .hero__title { max-width: 66%; overflow-wrap: break-word; }
@media (max-width: 1100px) {
  .hero__inner > *, .hero__inner .hero__title { max-width: 76%; }
}
@media (max-width: 900px) {
  .hero__inner > *, .hero__inner .hero__title { max-width: 100%; }
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--ink);
}
.hero__meta::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--red);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.005em;
  margin: 0 0 32px;
  color: var(--black);
  text-transform: uppercase;
}
.hero__title .jp {
  display: block;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(44px, 8.4vw, 128px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--black);
  margin-top: 10px;
  white-space: nowrap;
}
.hero__title .jp--big { font-size: clamp(60px, 12vw, 180px); line-height: 0.95; margin-top: 2px; }
.hero__title .kae {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 0.02em 0.18em 0.08em;
  position: relative;
  transform: skewX(-4deg);
  line-height: 1;
}
.hero__title .kae::before {
  content: "";
  position: absolute;
  left: -6px; top: 12%; bottom: 12%;
  width: 4px;
  background: var(--black);
}
@media (max-width: 900px) {
  .hero__title .jp { white-space: normal; }
}

.hero__sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.85;
  color: var(--ink);
  max-width: 640px;
  margin: 0 0 26px;
  letter-spacing: 0.03em;
}
.hero__sub strong { color: var(--red); font-weight: 900; }

.hero__desc {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--ink);
  max-width: 640px;
  margin: 0 0 32px;
  padding: 18px 22px;
  border-left: 4px solid var(--red);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 24px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  border: 2.5px solid var(--black);
  color: var(--black);
  background: var(--white);
  transition: transform .25s, box-shadow .25s, color .25s, background .25s;
  position: relative;
  text-align: left;
}
.btn::after {
  content: "→";
  font-size: 16px;
  transition: transform .25s;
}
.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--black);
}
.btn:hover::after { transform: translateX(4px); }
.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover {
  box-shadow: 6px 6px 0 var(--black);
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.btn--black { background: var(--black); color: var(--white); }
.btn--black:hover { box-shadow: 6px 6px 0 var(--red); }
.btn--ghost { background: transparent; }

/* ================================================================
   ABOUT (現場起点)
   ================================================================ */
.about {
  background: var(--white);
  border-top: 2px solid var(--black);
  padding: clamp(90px, 14vh, 140px) var(--pad);
}
.about__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0 0 20px;
}
.about__title em { font-style: normal; color: var(--red); }
.about__lead {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
  color: var(--ink);
  margin: 0 0 20px;
}
.about__body p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  color: var(--ink);
  margin: 0 0 16px;
}
.about__challenges {
  list-style: none;
  padding: 26px 28px;
  margin: 26px 0 0;
  background: var(--off-white);
  border-left: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}
.about__challenges li { padding-left: 18px; position: relative; }
.about__challenges li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 2px;
  background: var(--red);
}

.about__strengths {
  border-top: 2px solid var(--black);
  padding-top: 20px;
}
.about__strengths h3 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--red);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.about__strengths-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.about__strengths-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.about__strengths-list li:last-child { border-bottom: 0; }
.about__strengths-list .n {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.16em;
  min-width: 32px;
}

/* ================================================================
   SERVICE (現在提供 vs 開発中)
   ================================================================ */
.service {
  background: var(--off-white);
  padding: clamp(80px, 12vh, 140px) var(--pad);
  border-top: 2px solid var(--black);
}
.service__head {
  max-width: var(--maxw);
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
}
.service__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0;
}
.service__title em { font-style: normal; color: var(--red); }
.service__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--ink);
  max-width: 520px;
  margin: 0;
}

.service__block {
  max-width: var(--maxw);
  margin: 0 auto 50px;
}
.service__block:last-child { margin-bottom: 0; }
.service__block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--black);
}
.service__block-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--black);
  margin: 0;
}
.service__block-note {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
  margin-left: auto;
}
.service__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service__grid--wide { grid-template-columns: repeat(2, 1fr); gap: 18px; }

.service__card {
  background: var(--white);
  border: 2.5px solid var(--black);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .3s, box-shadow .3s;
}
.service__card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--red);
}
.service__card--dev {
  background: var(--white);
  border-style: dashed;
  border-color: var(--ink-dim);
}
.service__card__num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--red);
}
.service__card--dev .service__card__num { color: var(--ink-dim); }
.service__card__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.35;
  color: var(--black);
  margin: 0;
}
.service__card__desc {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink);
  margin: 0;
}

/* ================================================================
   BUSINESS MODEL (循環図)
   ================================================================ */
.model {
  background: var(--black);
  color: var(--white);
  padding: clamp(90px, 14vh, 150px) var(--pad);
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  position: relative;
  overflow: hidden;
}
.model .eyebrow { color: var(--red); }
.model .eyebrow::before { background: var(--red); }
.model__head {
  max-width: var(--maxw);
  margin: 0 auto 60px;
}
.model__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0 0 20px;
}
.model__title em { font-style: normal; color: var(--red); }
.model__lead {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0;
}

.model__flow {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
}
.model__step {
  padding: 26px 20px 22px;
  background: var(--ink-2);
  border: 1.5px solid rgba(255,255,255,0.14);
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.model__step .n {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.model__step .k {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 17px;
  color: var(--white);
  letter-spacing: -0.005em;
  line-height: 1.35;
  margin: 0;
}
.model__step p {
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.model__step::after {
  content: "→";
  position: absolute;
  right: -14px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 20px;
  color: var(--red);
  font-weight: 700;
  z-index: 1;
}
.model__step:last-child::after { display: none; }

.model__note {
  max-width: var(--maxw);
  margin: 40px auto 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  padding: 14px 18px;
  border: 1.5px dashed rgba(255,255,255,0.2);
}
.model__note .k {
  color: var(--red);
  font-weight: 700;
  margin-right: 10px;
  letter-spacing: 0.22em;
}

/* ================================================================
   FUTURE (4テーマ、数字なし)
   ================================================================ */
.future {
  background: var(--off-white);
  padding: clamp(90px, 14vh, 150px) var(--pad);
  border-top: 2px solid var(--black);
}
.future__head {
  max-width: var(--maxw);
  margin: 0 auto 50px;
}
.future__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0 0 16px;
}
.future__title em { font-style: normal; color: var(--red); }
.future__lead {
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.95;
  color: var(--ink);
  max-width: 620px;
  margin: 0;
}

.future__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.future__item {
  padding: 36px 26px 34px;
  border-right: 2px solid var(--black);
  position: relative;
  background: var(--white);
}
.future__item:last-child { border-right: 0; }
.future__item .n {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 24px;
}
.future__item h3 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--black);
  margin: 0 0 14px;
}
.future__item h3 em {
  font-style: normal;
  color: var(--red);
}
.future__item p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink);
  margin: 0;
}

/* ================================================================
   NEWS
   ================================================================ */
.news {
  background: var(--white);
  padding: clamp(80px, 12vh, 140px) var(--pad);
  border-top: 2px solid var(--black);
}
.news__head {
  max-width: var(--maxw);
  margin: 0 auto 30px;
}
.news__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0 0 8px;
}
.news__title span { color: var(--red); }
.news__sub {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
}
.news__list {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 2px solid var(--black);
}
.news__item {
  display: grid;
  grid-template-columns: 130px 130px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1.5px solid var(--line-2);
  align-items: center;
  color: var(--ink);
}
.news__item .date {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.news__item .tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
  background: var(--black);
  padding: 4px 10px 3px;
  text-align: center;
  justify-self: start;
}
.news__item .head {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
}

/* ================================================================
   PARTNER (協業型)
   ================================================================ */
.partner {
  background: var(--off-white);
  padding: clamp(80px, 12vh, 140px) var(--pad);
  border-top: 2px solid var(--black);
}
.partner__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.partner__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0 0 22px;
}
.partner__title em { font-style: normal; color: var(--red); }
.partner__body p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  color: var(--ink);
  margin: 0 0 14px;
}
.partner__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}
.partner__list li {
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--black);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.partner__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 24px;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  border: 2.5px solid var(--black);
  transition: transform .25s, box-shadow .25s;
}
.partner__cta:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--red);
}
.partner__cta::after { content: "→"; font-size: 16px; }

/* ================================================================
   COMPANY
   ================================================================ */
.company {
  background: var(--white);
  padding: clamp(80px, 12vh, 140px) var(--pad);
  border-top: 2px solid var(--black);
}
.company__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
}
.company__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0 0 10px;
}
.company__title-en {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--red);
  margin-top: 14px;
}
.company__lead {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--ink);
  max-width: 320px;
  margin: 20px 0 30px;
}
.company__mark img {
  height: 90px; width: auto;
  filter: brightness(0);
}
.company__table {
  margin: 0;
  border-top: 2px solid var(--black);
}
.company__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1.5px solid var(--line-2);
}
.company__row dt {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--red);
  text-transform: uppercase;
  padding-top: 3px;
}
.company__row dt .k-en {
  display: block;
  color: var(--ink-mute);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  margin-top: 3px;
}
.company__row dd {
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.75;
  color: var(--ink);
  margin: 0;
}
.company__row dd .v-note {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
  margin-top: 3px;
}
.company__row .v-todo {
  display: inline-block;
  padding: 3px 8px 2px;
  background: rgba(228,0,43,0.08);
  color: var(--red);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  border: 1.5px dashed var(--red);
}
.company__biz {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 6px;
}
.company__biz li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
}
.company__biz li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 2px;
  background: var(--red);
}

/* ================================================================
   CONTACT / RECRUIT CTA (下部大バナー2つ)
   ================================================================ */
.cta-row {
  background: var(--off-white);
  padding: 0 var(--pad) clamp(80px, 12vh, 140px);
  border-top: 2px solid var(--black);
  padding-top: clamp(80px, 12vh, 140px);
}
.cta-row__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cta-card {
  padding: 46px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 2.5px solid var(--black);
  transition: transform .3s, box-shadow .3s;
  min-height: 260px;
}
.cta-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--red);
}
.cta-card--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.cta-card--red:hover { box-shadow: 8px 8px 0 var(--black); }
.cta-card__en {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  opacity: 0.7;
}
.cta-card__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 4px 0 4px;
}
.cta-card__desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
  margin: 0 0 auto;
}
.cta-card__arr {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-top: auto;
}
.cta-card__arr::after { content: "  →"; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px var(--pad) 30px;
  position: relative;
  overflow: hidden;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1.5px solid rgba(255,255,255,0.14);
  position: relative;
  z-index: 1;
}
.footer__brand-en {
  font-family: var(--display);
  font-weight: 400;
  font-size: 42px;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
}
.footer__brand-jp {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--red);
  margin-top: 8px;
}
.footer__tag {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
  margin: 20px 0 0;
  max-width: 380px;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--red);
  margin: 0 0 18px;
  text-transform: uppercase;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__col a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color .25s;
}
.footer__col a:hover { color: var(--red); }
.footer__bottom {
  max-width: var(--maxw);
  margin: 22px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}
.footer__bottom a {
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: color .25s, border-color .25s;
}
.footer__bottom a:hover { color: var(--red); border-color: var(--red); }

/* ================================================================
   STATIC pages (privacy / contact / 404) — shared page shell
   ================================================================ */
.page {
  padding: 120px var(--pad) clamp(80px, 12vh, 140px);
  background: var(--off-white);
  min-height: 100vh;
}
.page__inner {
  max-width: 900px;
  margin: 0 auto;
}
.page__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--black);
}
.page__title em { font-style: normal; color: var(--red); }
.page__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.page__eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--red);
}
.page__body {
  background: var(--white);
  border: 2px solid var(--black);
  padding: 40px 44px;
  margin-top: 30px;
}
.page__body h2 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--black);
  margin: 30px 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.page__body h2:first-child { margin-top: 0; }
.page__body h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  margin: 20px 0 8px;
}
.page__body p, .page__body li {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink);
  margin: 0 0 12px;
}
.page__body ul, .page__body ol {
  padding-left: 22px;
  margin: 0 0 18px;
}
.page__body ul li { list-style: none; position: relative; padding-left: 4px; }
.page__body ul li::before {
  content: "";
  position: absolute;
  left: -18px; top: 12px;
  width: 8px; height: 2px;
  background: var(--red);
}
.page__body a {
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 1px;
}
.page__body strong { font-weight: 900; }

/* Contact form */
.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--white);
  border: 2.5px solid var(--black);
  padding: 36px 36px 30px;
  margin-top: 30px;
  box-shadow: 8px 8px 0 var(--red);
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form label.full { grid-column: 1 / -1; }
.form .k {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red);
  text-transform: uppercase;
}
.form .k em {
  color: var(--red);
  font-style: normal;
  margin-left: 4px;
}
.form input,
.form select,
.form textarea {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--off-white);
  border: 2px solid var(--black);
  padding: 12px 14px;
  transition: border-color .25s, background .25s;
  outline: none;
  border-radius: 0;
  width: 100%;
}
.form textarea { resize: vertical; line-height: 1.7; }
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--red);
  background: var(--white);
}
.form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--red) 50%),
    linear-gradient(-45deg, transparent 50%, var(--red) 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.form__consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
}
.form__consent input { width: auto; margin-top: 4px; }
.form__submit {
  align-self: flex-start;
  padding: 15px 30px;
  background: var(--red);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  border: 3px solid var(--red);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.form__submit:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--black);
  background: var(--black);
  border-color: var(--black);
}
.form__submit .arr { font-size: 18px; }
.form__note {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
  margin: 0;
  line-height: 1.85;
}
.form__error {
  color: var(--red);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 4px;
  display: none;
}
.form__error.is-visible { display: block; }

/* 404 */
.notfound {
  padding: 140px var(--pad) 120px;
  background: var(--off-white);
  min-height: 100vh;
  display: flex; align-items: center;
}
.notfound__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.notfound__num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(120px, 22vw, 260px);
  color: var(--red);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.notfound__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--black);
  margin: 12px 0 20px;
}
.notfound__body {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--ink);
  margin: 0 0 32px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .service__grid { grid-template-columns: repeat(2, 1fr); }
  .model__flow { grid-template-columns: repeat(3, 1fr); }
  .model__step::after { display: none; }
  .future__grid { grid-template-columns: repeat(2, 1fr); }
  .future__item:nth-child(2) { border-right: 0; }
  .future__item:nth-child(1),
  .future__item:nth-child(2) { border-bottom: 2px solid var(--black); }
}

@media (max-width: 800px) {
  :root { --pad: 18px; }
  .nav { padding: 10px 16px; }
  .nav__lockup { height: 22px; }
  .nav__cta { padding: 9px 14px; font-size: 11px; }

  .hero { min-height: auto; padding-bottom: 0; }
  .hero__inner { padding: 90px 18px 110px; }
  .hero__title { font-size: clamp(52px, 15vw, 82px); overflow-wrap: normal; word-break: keep-all; }
  .hero__title .jp { font-size: clamp(38px, 11vw, 60px); line-height: 1.05; }
  .hero__title .jp--big { font-size: clamp(46px, 14vw, 88px); }
  .hero__truck { width: 100%; height: 55vh; opacity: 0.5; mask-image: linear-gradient(to top, black 30%, transparent 100%); }
  .hero__bar { display: none; }
  .hero__sub { font-size: 14.5px; line-height: 1.9; }
  .hero__sub br { display: none; }
  .hero__desc { padding: 14px 18px; font-size: 14px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; padding: 14px 20px; font-size: 12px; letter-spacing: 0.16em; }

  .about { padding: 80px 18px 60px; }
  .about__inner { grid-template-columns: 1fr; gap: 30px; }
  .about__title { font-size: clamp(28px, 8vw, 42px); }
  .about__challenges { padding: 20px 22px; font-size: 14.5px; }

  .service { padding: 80px 18px 70px; }
  .service__head { grid-template-columns: 1fr; gap: 14px; }
  .service__title { font-size: clamp(28px, 8vw, 44px); }
  .service__block-head { flex-wrap: wrap; gap: 8px; }
  .service__block-title { font-size: 18px; }
  .service__block-note { margin-left: 0; font-size: 10px; letter-spacing: 0.16em; }
  .service__grid,
  .service__grid--wide { grid-template-columns: 1fr; gap: 12px; }
  .service__card { padding: 22px 20px 20px; }
  .service__card__title { font-size: 18px; }

  .model { padding: 80px 18px 70px; }
  .model__title { font-size: clamp(28px, 8vw, 44px); }
  .model__flow { grid-template-columns: 1fr; gap: 10px; }
  .model__step { min-height: auto; padding: 20px 20px 18px; }
  .model__step::after { display: none; }

  .future { padding: 80px 18px 70px; }
  .future__title { font-size: clamp(28px, 8vw, 44px); }
  .future__grid { grid-template-columns: 1fr; }
  .future__item { border-right: 0; border-bottom: 2px solid var(--black); padding: 26px 18px 24px; }
  .future__item:last-child { border-bottom: 0; }

  .news { padding: 70px 18px 60px; }
  .news__title { font-size: clamp(28px, 8vw, 42px); }
  .news__item {
    grid-template-columns: auto auto;
    gap: 6px 12px;
    padding: 16px 0;
  }
  .news__item .date { grid-column: 1; grid-row: 1; font-size: 11px; }
  .news__item .tag { grid-column: 2; grid-row: 1; font-size: 9.5px; padding: 3px 8px 2px; }
  .news__item .head { grid-column: 1 / -1; grid-row: 2; font-size: 14px; line-height: 1.7; }

  .partner { padding: 80px 18px 70px; }
  .partner__inner { grid-template-columns: 1fr; gap: 26px; }
  .partner__title { font-size: clamp(28px, 8vw, 42px); }
  .partner__list { grid-template-columns: 1fr; }

  .company { padding: 80px 18px 70px; }
  .company__inner { grid-template-columns: 1fr; gap: 26px; }
  .company__title { font-size: clamp(28px, 8vw, 42px); }
  .company__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .company__row dt { font-size: 10px; letter-spacing: 0.22em; }
  .company__row dd { font-size: 14px; line-height: 1.7; }

  .cta-row { padding: 70px 18px; padding-top: 70px; }
  .cta-row__grid { grid-template-columns: 1fr; gap: 12px; }
  .cta-card { padding: 30px 24px 26px; min-height: auto; }
  .cta-card__title { font-size: clamp(22px, 7vw, 30px); }

  .footer { padding: 40px 18px 24px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 24px 18px; padding-bottom: 30px; }
  .footer__inner > *:first-child { grid-column: 1 / -1; }
  .footer__brand-en { font-size: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  .page { padding: 100px 18px 60px; }
  .page__body { padding: 28px 22px; }
  .form { padding: 24px 22px 22px; box-shadow: 5px 5px 0 var(--red); }
  .form .row { grid-template-columns: 1fr; gap: 16px; }
  .form__submit { width: 100%; justify-content: center; }
}

@media (max-width: 420px) {
  .hero__title { font-size: clamp(46px, 15vw, 68px); }
  .hero__title .jp { font-size: clamp(34px, 11vw, 52px); }
  .hero__title .jp--big { font-size: clamp(40px, 14vw, 68px); }
  .footer__inner { grid-template-columns: 1fr; }
}

/* prefers-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;
  }
}


/* ==============================================================
   RE-INFORCED SECTIONS — brought back v2 density (85%)
   ============================================================== */

/* --- Hero: dark, cinematic --- */
.hero--dark {
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.hero--dark .hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  background-image: url("assets/hero-truck-night.jpg");
  background-size: cover;
  background-position: center 55%;
  transform: scale(1.05);
  will-change: transform;
}
.hero--dark .hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 30% 55%, transparent 20%, rgba(10,10,10,0.7) 80%),
    linear-gradient(to top, var(--black) 0%, rgba(10,10,10,0) 35%, rgba(10,10,10,0.6) 100%);
}
.hero--dark .hero__grid {
  position: absolute; inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(80% 60% at 50% 50%, black 40%, transparent 100%);
}
.hero--dark .hero__redline {
  position: absolute;
  left: 0; right: 0;
  top: 88px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red) 20%, var(--red) 80%, transparent);
  z-index: 2;
  opacity: 0.7;
}
.hero--dark .hero__inner {
  padding: 130px var(--pad) 100px;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: end;
}
.hero--dark .hero__inner > * { max-width: unset; }
.hero--dark .hero__meta {
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero--dark .hero__meta::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--red);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.hero--dark .hero__title {
  color: var(--white);
  font-size: clamp(58px, 10vw, 168px);
}
.hero--dark .hero__title .jp {
  color: var(--white);
  font-size: clamp(46px, 8.4vw, 132px);
}
.hero--dark .hero__title .jp--big {
  font-size: clamp(60px, 12vw, 180px);
}
.hero--dark .hero__title .kae::before { background: var(--white); }
.hero--dark .hero__sub {
  color: rgba(255,255,255,0.9);
  font-family: var(--sans);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.85;
  max-width: 620px;
  margin: 0 0 28px;
}
.hero--dark .hero__sub strong { color: var(--red); }
.hero--dark .btn {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.hero--dark .btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--red);
}
.hero--dark .btn--red { background: var(--red); border-color: var(--red); }
.hero--dark .btn--red:hover { box-shadow: 6px 6px 0 var(--white); }
.hero--dark .btn--ghost { background: transparent; border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }

/* Hero info panel (fact-based, no fake telemetry) */
.hero__panel {
  border: 1px solid rgba(255,255,255,0.24);
  padding: 22px 24px 20px;
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(8px);
  align-self: end;
  margin-bottom: 40px;
}
.hero__panel::before {
  content: "";
  display: block;
  width: 32px; height: 2px;
  background: var(--red);
  margin-bottom: 14px;
}
.hero__panel dl { margin: 0; }
.hero__panel .row {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero__panel .row:last-child { border-bottom: 0; }
.hero__panel dt {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--red);
  margin-bottom: 6px;
}
.hero__panel dd {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  letter-spacing: 0.02em;
}
.hero__panel dd em {
  font-style: normal;
  color: var(--red);
  font-weight: 900;
  border-bottom: 2px solid var(--red);
  padding-bottom: 1px;
}

.hero--dark .hero__scroll {
  position: absolute;
  left: var(--pad);
  bottom: 40px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.55);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 10px;
}
.hero--dark .hero__scroll::after {
  content: "";
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scroll-drop 1.9s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%, 100% { transform: scaleY(1); opacity: 1; transform-origin: top; }
  50% { transform: scaleY(0.2); opacity: 0.2; }
}

@media (max-width: 900px) {
  .hero--dark .hero__inner { grid-template-columns: 1fr; gap: 20px; padding: 100px 18px 90px; }
  .hero__panel { max-width: 320px; margin-bottom: 20px; }
  .hero--dark .hero__scroll { display: none; }
  .hero--dark .hero__redline { top: 72px; }
}

/* ================================================================
   BRAND STATEMENT (black, big english, tiger)
   ================================================================ */
.statement {
  background: var(--black);
  color: var(--white);
  padding: clamp(100px, 15vh, 180px) var(--pad);
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  position: relative;
  overflow: hidden;
}
.statement__grid-bg {
  position: absolute; inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.statement__tiger {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  width: min(90vh, 1000px);
  height: min(90vh, 1000px);
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.statement__tiger img {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;   /* on black bg: white drops out, red glows */
  opacity: 0.16;
  animation: tiger-breathe 8s ease-in-out infinite alternate;
}
@keyframes tiger-breathe {
  0% { opacity: 0.12; transform: scale(1); }
  100% { opacity: 0.22; transform: scale(1.02); }
}
.statement__inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
}
.statement__side {
  writing-mode: vertical-rl;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.7);
  padding-left: 30px;
  position: relative;
}
.statement__side::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 88px;
  background: var(--red);
}
.statement__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.statement__eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--red);
}
.statement__words {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(72px, 12vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.18em;
}
.statement__words .w {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  color: var(--white);
}
.statement__words .w .jp {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 0.32em;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.8);
}
.statement__words .w--red { color: var(--red); }
.statement__words .w--outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--white);
  text-stroke: 2.5px var(--white);
}
.statement__strip {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 30px;
  margin: 0 0 40px;
  max-width: 500px;
}
.statement__strip span {
  display: inline-block;
  height: 100%;
  background: var(--red);
}
.statement__strip span:nth-child(3n) { background: var(--white); opacity: 0.5; height: 65%; }
.statement__strip span:nth-child(5n) { height: 40%; }
.statement__strip span:nth-child(7n) { height: 100%; background: var(--red); }

.statement__body h2 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  color: var(--white);
}
.statement__body h2 em {
  font-style: normal;
  background: var(--red);
  color: var(--white);
  padding: 0 0.15em 0.05em;
}
.statement__body p {
  font-size: 15.5px;
  font-weight: 500;
  line-height: 2;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 0 16px;
}
.statement__body p em {
  font-style: normal;
  color: var(--red);
  font-weight: 900;
  border-bottom: 2px solid var(--red);
  padding-bottom: 1px;
}

@media (max-width: 900px) {
  .statement__inner { grid-template-columns: 1fr; gap: 22px; }
  .statement__side {
    writing-mode: horizontal-tb;
    padding-left: 0;
    padding-top: 14px;
    border-top: 2px solid var(--red);
    font-size: 10.5px;
  }
  .statement__side::before { display: none; }
  .statement__words { font-size: clamp(52px, 16vw, 88px); margin-bottom: 28px; }
  .statement__tiger {
    right: -20%; top: auto; bottom: -6%; transform: none;
    width: 130vw; height: 130vw;
  }
  .statement__tiger img { opacity: 0.14; }
}

/* ================================================================
   ORIGIN (現場から生まれた) — 2 column with photo
   ================================================================ */
.origin {
  background: var(--white);
  padding: clamp(90px, 14vh, 150px) var(--pad);
  border-top: 2px solid var(--black);
  position: relative;
  overflow: hidden;
}
.origin__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: stretch;
}
.origin__photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 2.5px solid var(--black);
}
.origin__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.6) contrast(1.1);
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
}
.origin__photo:hover img { transform: scale(1.03); }
.origin__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(228,0,43,0.14), transparent 55%);
  mix-blend-mode: multiply;
}
.origin__photo-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--red);
  color: var(--white);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  padding: 6px 12px 5px;
  z-index: 2;
}
.origin__side {
  position: absolute;
  right: 30px; top: 30px; bottom: 30px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.origin__side::before {
  content: "";
  width: 2px; height: 40px;
  background: var(--red);
}

.origin__body { display: flex; flex-direction: column; justify-content: center; }
.origin__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0 0 22px;
}
.origin__title em { font-style: normal; color: var(--red); }
.origin__body > p {
  font-size: 15.5px;
  font-weight: 500;
  line-height: 2;
  color: var(--ink);
  margin: 0 0 14px;
  max-width: 560px;
}
.origin__body > p strong { font-weight: 900; color: var(--black); }
.origin__keywords {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 2px solid var(--black);
  border-left: 2px solid var(--black);
}
.origin__keywords li {
  padding: 18px 20px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  font-family: var(--display);
  font-size: 24px;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.04em;
  position: relative;
}
.origin__keywords li em {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--red);
  font-style: normal;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .origin__inner { grid-template-columns: 1fr; gap: 30px; }
  .origin__photo { aspect-ratio: 4/3; }
  .origin__side { display: none; }
  .origin__title { font-size: clamp(28px, 8vw, 42px); }
  .origin__keywords li { padding: 14px 16px; font-size: 20px; }
}

/* ================================================================
   SERVICE (asymmetric, product-feel)
   ================================================================ */
.service-v2 {
  background: var(--ink);
  color: var(--white);
  padding: clamp(90px, 14vh, 160px) var(--pad);
  border-top: 2px solid var(--red);
  position: relative;
  overflow: hidden;
}
.service-v2 .eyebrow { color: var(--red); }
.service-v2 .eyebrow::before { background: var(--red); }
.service-v2__watermark {
  position: absolute;
  left: -3%; bottom: -8%;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(180px, 30vw, 460px);
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.02em;
  line-height: 1;
  pointer-events: none;
}
.service-v2__head {
  max-width: var(--maxw);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.service-v2__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0;
}
.service-v2__title em { font-style: normal; color: var(--red); }
.service-v2__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin: 0;
}
.service-v2__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.service-v2__card {
  padding: 34px 30px 28px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.14);
  transition: background .3s, transform .3s, border-color .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-v2__card:hover {
  background: rgba(228,0,43,0.05);
  border-color: var(--red);
  transform: translateY(-3px);
}
.service-v2__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(0.16,1,0.3,1);
}
.service-v2__card:hover::before { transform: scaleX(1); }
.service-v2__card__n {
  font-family: var(--display);
  font-weight: 400;
  font-size: 72px;
  color: var(--red);
  line-height: 0.85;
}
.service-v2__card__en {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.6);
  padding-bottom: 12px;
  border-bottom: 1.5px solid rgba(255,255,255,0.14);
}
.service-v2__card__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.3;
  color: var(--white);
  margin: 0;
}
.service-v2__card__desc {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.service-v2__card__meta {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-top: 12px;
  border-top: 1.5px dashed rgba(255,255,255,0.14);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6);
}
.service-v2__card__meta span {
  padding: 3px 8px 2px;
  border: 1px solid rgba(255,255,255,0.2);
}
.service-v2__card__meta .now { color: var(--white); background: var(--red); border-color: var(--red); }

@media (max-width: 1100px) {
  .service-v2__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .service-v2__head { grid-template-columns: 1fr; gap: 14px; }
  .service-v2__grid { grid-template-columns: 1fr; }
  .service-v2__title { font-size: clamp(28px, 8vw, 44px); }
}

/* ================================================================
   BUSINESS MODEL (circular / loop)
   ================================================================ */
.model {
  background: var(--black);
  color: var(--white);
  padding: clamp(100px, 15vh, 180px) var(--pad);
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  position: relative;
  overflow: hidden;
}
.model__net-bg {
  position: absolute; inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.15) 1px, transparent 2px),
    radial-gradient(1px 1px at 70% 20%, rgba(228,0,43,0.3) 1px, transparent 2px),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.15) 1px, transparent 2px),
    radial-gradient(1px 1px at 85% 65%, rgba(255,255,255,0.15) 1px, transparent 2px),
    radial-gradient(1px 1px at 55% 40%, rgba(228,0,43,0.3) 1px, transparent 2px),
    radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.15) 1px, transparent 2px);
  background-size: 100% 100%;
  pointer-events: none;
}
.model__head {
  max-width: var(--maxw);
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}
.model .eyebrow { color: var(--red); }
.model .eyebrow::before { background: var(--red); }
.model__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0 0 20px;
}
.model__title em { font-style: normal; color: var(--red); }
.model__lead {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0;
}

.model__circle {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 1/1;
  z-index: 1;
}
.model__circle svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.model__center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  box-shadow: 0 0 60px rgba(228,0,43,0.4);
  z-index: 2;
}
.model__center .en {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.model__center .jp {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.model__node {
  position: absolute;
  width: 180px;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.model__node .n {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 6px;
}
.model__node h3 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 19px;
  line-height: 1.35;
  color: var(--white);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.model__node p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
/* Six nodes at 60deg intervals around a circle radius 300 from center */
.model__node--1 { left: 50%; top: 4%; }
.model__node--2 { left: 92%; top: 28%; }
.model__node--3 { left: 92%; top: 72%; }
.model__node--4 { left: 50%; top: 96%; }
.model__node--5 { left: 8%; top: 72%; }
.model__node--6 { left: 8%; top: 28%; }

@media (max-width: 1000px) {
  .model__circle { max-width: 100%; aspect-ratio: auto; height: auto; }
  .model__circle svg, .model__center { display: none; }
  .model__node {
    position: static;
    transform: none;
    width: 100%;
    padding: 22px 22px 20px;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.14);
    border-left: 3px solid var(--red);
    margin-bottom: 10px;
  }
}
@media (max-width: 800px) {
  .model__title { font-size: clamp(28px, 8vw, 44px); }
}

.model__note {
  max-width: var(--maxw);
  margin: 60px auto 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  padding: 14px 18px;
  border: 1.5px dashed rgba(255,255,255,0.2);
  position: relative;
  z-index: 1;
}
.model__note .k {
  color: var(--red);
  font-weight: 700;
  margin-right: 10px;
  letter-spacing: 0.22em;
}

/* ================================================================
   PRODUCT / DEVELOPMENT (dashboard mocks)
   ================================================================ */
.product {
  background: var(--off-white);
  padding: clamp(90px, 14vh, 150px) var(--pad);
  border-top: 2px solid var(--black);
  position: relative;
  overflow: hidden;
}
.product__watermark {
  position: absolute;
  right: -3%; top: 60px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(140px, 22vw, 340px);
  color: rgba(228,0,43,0.05);
  letter-spacing: -0.02em;
  line-height: 1;
  pointer-events: none;
}
.product__head {
  max-width: var(--maxw);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.product__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0;
}
.product__title em { font-style: normal; color: var(--red); }
.product__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--ink);
  max-width: 480px;
  margin: 0;
}
.product__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.product__card {
  background: var(--white);
  border: 2.5px solid var(--black);
  padding: 26px 26px 26px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
  transition: transform .3s, box-shadow .3s;
}
.product__card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--red);
}
.product__card__body { display: flex; flex-direction: column; gap: 10px; }
.product__card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.product__card__id {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red);
}
.product__card__status {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 3px 8px 2px;
  text-transform: uppercase;
}
.product__card__status.s-p { background: var(--red); color: var(--white); }
.product__card__status.s-plan { background: #FFC400; color: var(--black); }
.product__card__status.s-r { background: var(--black); color: var(--white); }
.product__card__status.s-c {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.product__card__en {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.product__card__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.3;
  color: var(--black);
  margin: 0;
  letter-spacing: -0.005em;
}
.product__card__desc {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink);
  margin: 0;
}

/* Mock screens */
.product__mock {
  background: var(--black);
  border: 1.5px solid var(--black);
  padding: 12px;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.product__mock::before {
  content: "";
  position: absolute;
  top: 5px; left: 8px;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 10px 0 0 rgba(255,255,255,0.15), 20px 0 0 rgba(255,255,255,0.15);
}
.product__mock-header {
  padding: 6px 8px 6px 30px;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 4px;
}
.product__mock-body {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 8px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
}
.product__mock-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  padding: 4px 6px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--red);
}
.product__mock-row.ok { border-left-color: #7ee787; }
.product__mock-row.warn { border-left-color: #FFC400; }
.product__mock-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  position: relative;
}
.product__mock-bar span {
  display: block;
  height: 100%;
  background: var(--red);
  width: var(--pct, 60%);
}
.product__mock-line {
  height: 40px;
  background:
    linear-gradient(to top, rgba(228,0,43,0.08), transparent 60%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 8px);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  position: relative;
}
.product__mock-line::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 10px;
  height: 2px;
  background: linear-gradient(to right,
    var(--red) 0%, var(--red) 40%,
    transparent 40%, transparent 60%,
    var(--red) 60%, var(--red) 100%);
  clip-path: polygon(0 60%, 15% 40%, 30% 70%, 45% 20%, 60% 55%, 75% 30%, 100% 45%, 100% 100%, 0 100%);
}
/* Line chat mock (for LINE product) */
.product__mock-chat {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--sans);
  font-size: 9.5px;
  color: var(--white);
  overflow: hidden;
}
.product__mock-msg {
  padding: 6px 10px;
  background: rgba(255,255,255,0.14);
  border-radius: 8px;
  max-width: 78%;
  align-self: flex-start;
  line-height: 1.4;
}
.product__mock-msg--me {
  background: var(--red);
  align-self: flex-end;
}
.product__mock-msg strong { color: var(--white); }

.product__disclaimer {
  max-width: var(--maxw);
  margin: 40px auto 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink);
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px dashed var(--red);
  border-left: 3px solid var(--red);
  position: relative;
  z-index: 1;
}
.product__disclaimer .k {
  color: var(--white);
  background: var(--red);
  padding: 3px 8px 2px;
  margin-right: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

@media (max-width: 900px) {
  .product__head { grid-template-columns: 1fr; gap: 14px; }
  .product__title { font-size: clamp(28px, 8vw, 44px); }
  .product__grid { grid-template-columns: 1fr; gap: 14px; }
  .product__card { grid-template-columns: 1fr; }
  .product__mock { aspect-ratio: 4/3; }
}

/* ================================================================
   FUTURE (revived 4-panel with big Anton, small graphics)
   ================================================================ */
.future-v2 {
  background: var(--off-white);
  padding: clamp(90px, 14vh, 150px) var(--pad);
  border-top: 2px solid var(--black);
}
.future-v2__head {
  max-width: var(--maxw);
  margin: 0 auto 50px;
}
.future-v2__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0 0 16px;
}
.future-v2__title em { font-style: normal; color: var(--red); }
.future-v2__lead {
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.95;
  color: var(--ink);
  max-width: 620px;
  margin: 0;
}
.future-v2__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.future-v2__item {
  padding: 34px 26px 30px;
  border-right: 2px solid var(--black);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.future-v2__item:last-child { border-right: 0; }
.future-v2__item:hover { background: rgba(228,0,43,0.04); }
.future-v2__item .code {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red);
  padding: 2px 6px 1px;
  border: 1px solid var(--red);
}
.future-v2__item .en-big {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 3.8vw, 68px);   /* was clamp(54px, 5.6vw, 96px) — overflowed at 4-col */
  color: var(--black);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 30px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
.future-v2__item .en-big em {
  font-style: normal;
  color: var(--red);
}
.future-v2__item h3 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 19px;
  line-height: 1.4;
  color: var(--black);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.future-v2__item p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink);
  margin: 0 0 14px;
}
.future-v2__item .bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  margin-top: 16px;
}
.future-v2__item .bars span {
  display: inline-block;
  width: 6px;
  background: var(--red);
  opacity: 0.9;
}
.future-v2__item .bars span:nth-child(3n) { background: var(--black); opacity: 0.3; }

@media (max-width: 1100px) {
  .future-v2__grid { grid-template-columns: repeat(2, 1fr); }
  .future-v2__item:nth-child(2) { border-right: 0; }
  .future-v2__item:nth-child(1),
  .future-v2__item:nth-child(2) { border-bottom: 2px solid var(--black); }
}
@media (max-width: 800px) {
  .future-v2__title { font-size: clamp(28px, 8vw, 44px); }
  .future-v2__grid { grid-template-columns: 1fr; }
  .future-v2__item { border-right: 0; border-bottom: 2px solid var(--black); padding: 28px 20px 26px; }
  .future-v2__item:last-child { border-bottom: 0; }
}

/* ================================================================
   KUMAMOTO / ORIGIN section (aso photo)
   ================================================================ */
.kumamoto {
  background: var(--black);
  color: var(--white);
  padding: 0;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: stretch;
}
.kumamoto__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 100%;
}
.kumamoto__photo {
  position: relative;
  min-height: 620px;
  background-image: url("assets/kumamoto-aso.jpg");
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(0.75);
}
.kumamoto__photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(228,0,43,0.14), transparent 60%),
    linear-gradient(to right, var(--black) 0%, transparent 20%);
  mix-blend-mode: multiply;
}
.kumamoto__tag {
  position: absolute;
  top: 30px; left: 30px;
  background: var(--red);
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  padding: 7px 14px 6px;
  z-index: 2;
}
.kumamoto__coord {
  position: absolute;
  bottom: 30px; left: 30px; right: 30px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.24);
  padding: 14px 18px 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.18em;
  line-height: 1.55;
  z-index: 2;
  max-width: 400px;
}
.kumamoto__coord strong { color: var(--red); }
.kumamoto__body {
  padding: clamp(70px, 10vh, 120px) clamp(30px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.kumamoto__body::before {
  content: "FROM KUMAMOTO";
  position: absolute;
  right: 20px; top: 40px;
  font-family: var(--display);
  font-size: clamp(60px, 8vw, 140px);
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.04);
  writing-mode: vertical-rl;
  line-height: 1;
  pointer-events: none;
}
.kumamoto .eyebrow { color: var(--red); }
.kumamoto .eyebrow::before { background: var(--red); }
.kumamoto__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0 0 26px;
}
.kumamoto__title em { font-style: normal; color: var(--red); }
.kumamoto__body p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  color: rgba(255,255,255,0.85);
  margin: 0 0 16px;
  max-width: 500px;
}
.kumamoto__body p em {
  font-style: normal;
  color: var(--red);
  font-weight: 900;
  border-bottom: 2px solid var(--red);
  padding-bottom: 1px;
}
.kumamoto__map-lines {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1.5px solid rgba(255,255,255,0.18);
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
}
.kumamoto__map-lines span::before {
  content: "";
  display: inline-block;
  width: 12px; height: 2px;
  background: var(--red);
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .kumamoto__inner { grid-template-columns: 1fr; }
  .kumamoto__photo { min-height: 380px; }
  .kumamoto__body { padding: 60px 20px; }
  .kumamoto__title { font-size: clamp(28px, 8vw, 42px); }
  .kumamoto__body::before { display: none; }
}

/* ================================================================
   NEWS v2 (light density + numbering)
   ================================================================ */
.news-v2 {
  background: var(--white);
  padding: clamp(80px, 12vh, 140px) var(--pad);
  border-top: 2px solid var(--black);
}
.news-v2__head {
  max-width: var(--maxw);
  margin: 0 auto 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.news-v2__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0 0 8px;
}
.news-v2__title span { color: var(--red); }
.news-v2__sub {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
}
.news-v2__list {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--black);
  counter-reset: newsn;
}
.news-v2__item {
  display: grid;
  grid-template-columns: 60px 120px 120px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1.5px solid var(--line-2);
  align-items: center;
  color: var(--ink);
  counter-increment: newsn;
}
.news-v2__item::before {
  content: "N." counter(newsn, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  padding: 3px 6px 2px;
  border: 1px solid var(--red);
  justify-self: start;
}
.news-v2__item .date {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.news-v2__item .tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
  background: var(--black);
  padding: 4px 10px 3px;
  text-align: center;
  justify-self: start;
}
.news-v2__item .head {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15.5px;
}

@media (max-width: 800px) {
  .news-v2 { padding: 80px 18px 60px; }
  .news-v2__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .news-v2__title { font-size: clamp(28px, 8vw, 42px); }
  .news-v2__item {
    grid-template-columns: auto auto auto;
    gap: 8px 12px;
    padding: 16px 0;
  }
  .news-v2__item::before { grid-column: 1; grid-row: 1; }
  .news-v2__item .date { grid-column: 2; grid-row: 1; font-size: 11px; }
  .news-v2__item .tag { grid-column: 3; grid-row: 1; font-size: 9.5px; padding: 3px 8px 2px; }
  .news-v2__item .head { grid-column: 1 / -1; grid-row: 2; font-size: 14px; line-height: 1.7; }
}

/* ================================================================
   PARTNER large CTA (photo background)
   ================================================================ */
.partner-v2 {
  background: var(--black);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--black);
}
.partner-v2__bg {
  position: absolute; inset: 0;
  z-index: 0;
  background-image: url("assets/truck-yard.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.7) contrast(1.1) brightness(0.55);
}
.partner-v2__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.3) 100%),
    radial-gradient(60% 80% at 80% 60%, rgba(228,0,43,0.25), transparent 80%);
}
.partner-v2__inner {
  position: relative;
  z-index: 1;
  padding: clamp(100px, 15vh, 180px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.partner-v2 .eyebrow { color: var(--red); }
.partner-v2 .eyebrow::before { background: var(--red); }
.partner-v2__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 26px;
}
.partner-v2__title em { font-style: normal; color: var(--red); }
.partner-v2__body p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  color: rgba(255,255,255,0.9);
  margin: 0 0 14px;
  max-width: 560px;
}
.partner-v2__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  background: var(--red);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  border: 2.5px solid var(--red);
  margin-top: 20px;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.partner-v2__cta::after { content: "→"; font-size: 16px; }
.partner-v2__cta:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--white);
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.partner-v2__list {
  list-style: none;
  padding: 26px 28px;
  margin: 0;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.24);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
}
.partner-v2__list li {
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.partner-v2__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 10px; height: 2px;
  background: var(--red);
}
.partner-v2__list li:nth-last-child(-n+2) { border-bottom: 0; }

@media (max-width: 900px) {
  .partner-v2__inner { grid-template-columns: 1fr; gap: 30px; padding: 80px 18px 80px; }
  .partner-v2__title { font-size: clamp(30px, 9vw, 52px); }
  .partner-v2__list { grid-template-columns: 1fr; padding: 20px 22px; }
}

/* ================================================================
   COMPANY v2 (branded)
   ================================================================ */
.company-v2 {
  background: var(--white);
  padding: clamp(90px, 14vh, 150px) var(--pad);
  border-top: 2px solid var(--black);
  position: relative;
  overflow: hidden;
}
.company-v2__mark-bg {
  position: absolute;
  right: -5%; top: 40%;
  transform: translateY(-50%);
  width: 70vh;
  max-width: 800px;
  aspect-ratio: 1/1;
  background: url("assets/logo-mark-dark.png") center / contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
}
.company-v2__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1.4fr;
  gap: 60px;
  position: relative;
  z-index: 1;
  align-items: start;
}
.company-v2__title-wrap {
  position: sticky;
  top: 100px;
  align-self: start;
  overflow: hidden;              /* stop giant Anton letters from bleeding into the right column */
}
.company-v2__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(60px, 8vw, 128px);   /* was 12vw / 220px — too wide for its column */
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 0.9;
  margin: 0 0 10px;
  white-space: nowrap;
}
.company-v2__title span { display: block; color: var(--red); }
.company-v2__title-jp {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
  margin: 20px 0 20px;
  letter-spacing: -0.005em;
}
.company-v2__lead {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.95;
  color: var(--ink);
  max-width: 320px;
  margin: 0;
}
.company-v2__table {
  margin: 0;
  border-top: 2px solid var(--black);
}
.company-v2__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1.5px solid var(--line-2);
}
.company-v2__row dt {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--red);
  text-transform: uppercase;
  padding-top: 3px;
}
.company-v2__row dt .k-en {
  display: block;
  color: var(--ink-mute);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  margin-top: 3px;
}
.company-v2__row dd {
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.75;
  color: var(--ink);
  margin: 0;
}
.company-v2__row dd .v-note {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
  margin-top: 3px;
}
.company-v2__biz {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 6px;
}
.company-v2__biz li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
}
.company-v2__biz li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 2px;
  background: var(--red);
}

@media (max-width: 900px) {
  .company-v2__inner { grid-template-columns: 1fr; gap: 30px; }
  .company-v2__title-wrap { position: static; overflow: visible; }
  .company-v2__title { font-size: clamp(56px, 18vw, 110px); }
  .company-v2__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
}


/* ==============================================================
   MOUSE CURSOR (subtle) — brought back at reduced intensity
   ============================================================== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 0; height: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .3s;
}
.cursor.is-active { opacity: 1; }
.cursor__ring {
  position: absolute; top: 0; left: 0;
  width: 32px; height: 32px;
  margin: -16px 0 0 -16px;
  border: 1.5px solid var(--red);
  transition: width .28s cubic-bezier(0.16,1,0.3,1),
              height .28s cubic-bezier(0.16,1,0.3,1),
              margin .28s cubic-bezier(0.16,1,0.3,1),
              transform .28s,
              background .28s;
  box-sizing: border-box;
}
.cursor__dot {
  position: absolute; top: 0; left: 0;
  width: 5px; height: 5px;
  margin: -2.5px 0 0 -2.5px;
  background: var(--red);
  transition: transform .2s, opacity .2s;
}
.cursor__label {
  position: absolute;
  top: 22px; left: 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--white);
  background: var(--red);
  padding: 3px 8px 2px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .28s, transform .28s;
}
.cursor.is-hover .cursor__ring {
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
  background: rgba(228,0,43,0.08);
  transform: rotate(45deg);
}
.cursor.is-hover .cursor__dot { opacity: 0; transform: scale(0.5); }
.cursor.is-hover .cursor__label { opacity: 1; transform: translateX(0); }
.cursor.is-click .cursor__ring {
  width: 20px; height: 20px;
  margin: -10px 0 0 -10px;
}

body.has-cursor,
body.has-cursor a,
body.has-cursor button,
body.has-cursor .btn { cursor: none; }
body.has-cursor input,
body.has-cursor textarea,
body.has-cursor select { cursor: text; }

@media (hover: none), (pointer: coarse) {
  .cursor { display: none !important; }
  body.has-cursor, body.has-cursor * { cursor: auto !important; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor { display: none !important; }
}

/* ==============================================================
   BUSINESS MODEL — Enhanced circulation
   ============================================================== */
.model__circle {
  position: relative;
}
/* Rotating outer orbit ring */
.model__orbit {
  position: absolute;
  inset: -20px;
  border: 1px dashed rgba(255,255,255,0.16);
  border-radius: 50%;
  animation: orbit-rotate 60s linear infinite;
  pointer-events: none;
}
.model__orbit::before,
.model__orbit::after {
  content: "";
  position: absolute;
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red);
}
.model__orbit::before { top: -6px; left: 50%; margin-left: -6px; }
.model__orbit::after {
  bottom: -6px; left: 50%; margin-left: -6px;
  background: var(--white);
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
  width: 8px; height: 8px;
}
@keyframes orbit-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Inner slower orbit */
.model__orbit-inner {
  position: absolute;
  inset: 60px;
  border: 1px dashed rgba(228,0,43,0.3);
  border-radius: 50%;
  animation: orbit-rotate-rev 90s linear infinite;
  pointer-events: none;
}
@keyframes orbit-rotate-rev {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}

/* Pulsing rings around the center */
.model__pulse {
  position: absolute;
  left: 50%; top: 50%;
  width: 260px; height: 260px;
  margin: -130px 0 0 -130px;
  border: 2px solid var(--red);
  border-radius: 50%;
  opacity: 0;
  animation: model-pulse 3.5s ease-out infinite;
  pointer-events: none;
}
.model__pulse--2 { animation-delay: 1.2s; }
.model__pulse--3 { animation-delay: 2.4s; }
@keyframes model-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Center circle: add subtle glow ring */
.model__center {
  box-shadow:
    0 0 0 8px rgba(228,0,43,0.12),
    0 0 0 20px rgba(228,0,43,0.06),
    0 0 80px rgba(228,0,43,0.5);
}
.model__center::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid var(--red);
  border-radius: 50%;
  opacity: 0.5;
}
.model__center::after {
  content: "";
  position: absolute;
  inset: -26px;
  border: 1px dashed rgba(228,0,43,0.4);
  border-radius: 50%;
  animation: orbit-rotate-rev 40s linear infinite;
}

/* Node styling refinement */
.model__node {
  padding: 20px 20px 18px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.14);
  transition: border-color .3s, transform .3s, background .3s;
  overflow: visible;
}
.model__node:hover {
  border-color: var(--red);
  background: rgba(20,10,12,0.9);
  transform: translate(-50%, -50%) scale(1.06);
  z-index: 3;
}
.model__node .n {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.model__node .n::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

/* Connector arrows between nodes (SVG paths from node to next) */
.model__connectors {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.model__connectors path {
  fill: none;
  stroke: rgba(228,0,43,0.5);
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
  stroke-linecap: round;
  animation: dash-flow 20s linear infinite;
}
.model__connectors path.solid {
  stroke-dasharray: none;
  stroke: rgba(228,0,43,0.25);
  stroke-width: 1;
}
@keyframes dash-flow {
  to { stroke-dashoffset: -100; }
}
.model__connectors .arrow {
  fill: var(--red);
  animation: arrow-move 8s linear infinite;
}
@keyframes arrow-move {
  0%   { opacity: 0; offset-distance: 0%; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; offset-distance: 100%; }
}

/* Moving truck-particle traveling around the ring */
.model__travelers {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.model__traveler {
  position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red);
  transform-origin: 0 0;
  animation: travel 12s linear infinite;
}
.model__traveler--2 {
  background: var(--white);
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  animation-duration: 18s;
  animation-delay: -6s;
}
.model__traveler--3 {
  background: var(--red);
  opacity: 0.6;
  animation-duration: 15s;
  animation-delay: -10s;
}
@keyframes travel {
  from { transform: rotate(0deg) translateX(340px); }
  to   { transform: rotate(360deg) translateX(340px); }
}

@media (max-width: 1000px) {
  .model__orbit,
  .model__orbit-inner,
  .model__pulse,
  .model__travelers,
  .model__connectors { display: none; }
  .model__node .n::before { display: none; }
}


/* ==============================================================
   STATEMENT — Triple meaning re-composed
   買える。変える。還える。
   ============================================================== */
.statement {
  padding: clamp(100px, 15vh, 180px) var(--pad) clamp(120px, 18vh, 200px);
}

.statement__intro {
  max-width: var(--maxw);
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: end;
}
.statement__brand {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}
.statement__brand em {
  font-style: normal;
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 0.02em 0.18em 0.08em;
  transform: skewX(-4deg);
  line-height: 1;
}

.statement__triple {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.statement__block {
  padding: 40px 40px 44px;
  border-top: 1.5px solid rgba(255,255,255,0.14);
  display: grid;
  grid-template-columns: 220px 1fr 320px;
  gap: 40px;
  align-items: start;
  position: relative;
  overflow: hidden;
  transition: background .5s;
}
.statement__block:hover { background: rgba(228,0,43,0.03); }
.statement__block:last-of-type { border-bottom: 1.5px solid rgba(255,255,255,0.14); }

/* Left column: chapter mark */
.statement__block-mark {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--red);
  padding-top: 8px;
}
.statement__block-mark::before {
  content: "";
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--red);
  margin-right: 12px;
  vertical-align: middle;
}

/* Center: JP giant word */
.statement__block-word {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(64px, 10vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--white);
  position: relative;
}
.statement__block-word .kae {
  color: var(--red);
}
/* Large watermark English inside center */
.statement__block-en {
  position: absolute;
  right: 340px;
  top: 20px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(120px, 14vw, 240px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  z-index: 0;
  text-transform: uppercase;
}

/* Right: description */
.statement__block-desc {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  color: rgba(255,255,255,0.82);
  margin: 0;
  padding-top: 12px;
  border-left: 3px solid var(--red);
  padding-left: 20px;
}
.statement__block-desc strong {
  font-weight: 900;
  color: var(--white);
}

/* Reveal choreography for statement */
.statement__block { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(0.16,1,0.3,1), transform .9s cubic-bezier(0.16,1,0.3,1); }
.statement__block.is-in { opacity: 1; transform: translateY(0); }

/* Final closing coda */
.statement__closer {
  max-width: var(--maxw);
  margin: 100px auto 0;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}
.statement__closer .k {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--red);
  margin-bottom: 24px;
  display: inline-block;
}
.statement__closer .big {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 168px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0;
}
.statement__closer .big em {
  font-style: normal;
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 0.02em 0.18em 0.08em;
  transform: skewX(-4deg);
  line-height: 1;
}

/* Responsive */
@media (max-width: 1100px) {
  .statement__block {
    grid-template-columns: 150px 1fr;
    gap: 24px;
    padding: 30px 24px 32px;
  }
  .statement__block-desc {
    grid-column: 2;
    padding-top: 8px;
    font-size: 14px;
  }
  .statement__block-en { right: -20px; }
}
@media (max-width: 700px) {
  .statement__intro { grid-template-columns: 1fr; gap: 22px; }
  .statement__intro .statement__side {
    writing-mode: horizontal-tb;
    padding-left: 0;
    padding-top: 12px;
    border-top: 2px solid var(--red);
  }
  .statement__intro .statement__side::before { display: none; }
  .statement__brand { font-size: clamp(32px, 9.5vw, 52px); }
  .statement__block {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 18px 26px;
  }
  .statement__block-mark {
    padding-top: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }
  .statement__block-word { font-size: clamp(56px, 22vw, 96px); }
  .statement__block-en {
    position: static;
    font-size: clamp(80px, 26vw, 130px);
    color: rgba(255,255,255,0.05);
    margin-top: -12px;
  }
  .statement__block-desc {
    padding-left: 14px;
    border-left-width: 2px;
    font-size: 13.5px;
  }
  .statement__closer { padding: 40px 16px; margin-top: 60px; }
  .statement__closer .big { font-size: clamp(36px, 12vw, 68px); }
}

/* ==============================================================
   MODEL — closing coda (buy/change/return) at end of section
   ============================================================== */
.model__closer {
  max-width: var(--maxw);
  margin: 60px auto 0;
  padding: 42px 30px 40px;
  border: 2px solid var(--red);
  background: rgba(228,0,43,0.05);
  text-align: center;
  position: relative;
  z-index: 1;
}
.model__closer .triple {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--white);
  display: flex;
  gap: 0.4em;
  justify-content: center;
  flex-wrap: wrap;
}
.model__closer .triple span {
  display: inline-block;
}
.model__closer .triple .k {
  color: var(--red);
}
.model__closer p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.model__closer p strong { color: var(--red); font-weight: 900; }
@media (max-width: 700px) {
  .model__closer { padding: 28px 20px 26px; }
  .model__closer .triple { font-size: clamp(24px, 7.5vw, 40px); gap: 0.2em; }
  .model__closer p { font-size: 13.5px; }
}


/* ==============================================================
   HERO — subtle tech accents (added, restrained)
   ============================================================== */

/* Chapter tag top-left */
.hero__ch {
  position: absolute;
  top: 96px;
  left: var(--pad);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.hero__ch::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--red);
}
.hero__ch .id {
  padding: 2px 6px 1px;
  border: 1px solid rgba(255,255,255,0.32);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.22em;
}

/* Coordinates top-right */
.hero__coord {
  position: absolute;
  top: 100px;
  right: var(--pad);
  z-index: 3;
  text-align: right;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  padding-left: 22px;
  border-left: 1px solid rgba(228,0,43,0.6);
}
.hero__coord .big {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__coord .lbl { color: var(--red); }

/* Hero panel — corner brackets + accent dot */
.hero__panel {
  position: relative;
}
.hero__panel::before,
.hero__panel::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--red);
  border-style: solid;
  border-width: 0;
}
.hero__panel::before {
  top: -1px; left: -1px;
  border-top-width: 1.5px;
  border-left-width: 1.5px;
}
.hero__panel::after {
  bottom: -1px; right: -1px;
  border-bottom-width: 1.5px;
  border-right-width: 1.5px;
}

/* Bottom data strip — informational only, no fake telemetry */
.hero__strip {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 12px var(--pad);
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.7);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
}
.hero__strip .dot {
  color: var(--red);
  font-size: 8px;
}
.hero__strip .em {
  color: var(--red);
  padding: 3px 8px 2px;
  border: 1px solid var(--red);
  letter-spacing: 0.2em;
  font-size: 9.5px;
}

/* Move scroll indicator up so it clears the strip on desktop */
.hero--dark .hero__scroll { bottom: 80px; }

@media (max-width: 900px) {
  .hero__ch { top: 82px; font-size: 9px; letter-spacing: 0.22em; }
  .hero__ch::before { width: 16px; }
  .hero__coord { display: none; }
  .hero__panel::before, .hero__panel::after { width: 8px; height: 8px; }
  .hero__strip {
    padding: 10px 16px;
    gap: 14px;
    font-size: 9.5px;
    letter-spacing: 0.2em;
    overflow-x: auto;
    white-space: nowrap;
  }
  .hero__strip::-webkit-scrollbar { display: none; }
  .hero--dark .hero__scroll { display: none; }
}


/* Statement — lead paragraph (added when giving the intro copy some breathing room) */
.statement__lead {
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 500;
  line-height: 2;
  color: rgba(255,255,255,0.82);
  margin: 24px 0 0;
  max-width: 640px;
}
.statement__lead strong {
  color: var(--white);
  font-weight: 900;
  border-bottom: 2px solid var(--red);
  padding-bottom: 1px;
}

/* Statement closer signature */
.statement__closer .sign {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: var(--red);
}

/* Remove the old "Brand Message" eyebrow that we replaced */


/* MODEL — coda (final thought after the circulation diagram) */
.model__coda {
  max-width: 800px;
  margin: 80px auto 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.model__coda::before,
.model__coda::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--red);
  margin: 0 auto 22px;
}
.model__coda::after { margin: 22px auto 0; }
.model__coda p {
  font-family: var(--sans);
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 700;
  line-height: 1.85;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.02em;
}
.model__coda p strong {
  font-weight: 900;
  color: var(--red);
}
.model__coda p em {
  font-style: normal;
  color: var(--red);
  font-weight: 900;
  border-bottom: 2px solid var(--red);
  padding-bottom: 1px;
}
@media (max-width: 700px) {
  .model__coda { margin: 50px auto 30px; }
  .model__coda p { font-size: 15px; line-height: 1.9; }
}


/* FUTURE — coda (single sentence after 4-panel grid) */
.future-v2__coda {
  max-width: var(--maxw);
  margin: 60px auto 0;
  text-align: center;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--black);
  padding: 0 20px;
}
.future-v2__coda em {
  font-style: normal;
  color: var(--red);
}
@media (max-width: 700px) {
  .future-v2__coda { margin: 40px auto 0; font-size: clamp(22px, 7vw, 36px); }
}


/* FOOTER — tag (main tagline stands alone, sub is a smaller company blurb) */
.footer__tag {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  color: var(--white);
  margin: 24px 0 0;
  max-width: 380px;
  letter-spacing: -0.005em;
}
.footer__tag-sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  margin: 14px 0 0;
  max-width: 380px;
}


/* ==============================================================
   OUR BRANDS (TORABAS ONE side)
   ============================================================== */
.our-brands-t {
  background: var(--white);
  padding: clamp(90px, 14vh, 150px) var(--pad);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.our-brands-t__head {
  max-width: var(--maxw);
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
}
.our-brands-t__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0;
}
.our-brands-t__title em { font-style: normal; color: var(--red); }
.our-brands-t__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--ink);
  max-width: 480px;
  margin: 0;
}
.our-brands-t__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.brand-card-t {
  display: block;
  padding: 40px 38px 34px;
  border: 2.5px solid var(--black);
  background: var(--white);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.brand-card-t:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--red);
}
.brand-card-t--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.brand-card-t--dark:hover { box-shadow: 8px 8px 0 var(--red); }
.brand-card-t__current {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
  background: var(--red);
  padding: 4px 10px 3px;
  text-transform: uppercase;
}
.brand-card-t__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 30px;
}
.brand-card-t__logo {
  display: flex; align-items: center; gap: 10px;
}
.brand-card-t__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-card-t--dark .brand-card-t__logo-mark {
  background: var(--white);
  color: var(--black);
}
.brand-card-t:not(.brand-card-t--dark) .brand-card-t__logo-mark {
  background: #F27A2A;
  color: var(--white);
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.brand-card-t__logo-name {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 20px;
  color: var(--black);
  letter-spacing: -0.005em;
}
.brand-card-t--dark .brand-card-t__logo-name { color: var(--white); }
.brand-card-t__tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--red);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.brand-card-t--dark .brand-card-t__tag { color: #F27A2A; }
.brand-card-t__copy {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0 0 20px;
}
.brand-card-t__copy em {
  font-style: normal;
  color: var(--red);
}
.brand-card-t--dark .brand-card-t__copy { color: var(--white); }
.brand-card-t--dark .brand-card-t__copy em { color: #F27A2A; font-style: italic; font-family: 'Fraunces', serif; font-weight: 500; }
.brand-card-t__desc {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink);
  margin: 0 0 26px;
}
.brand-card-t--dark .brand-card-t__desc { color: rgba(255,255,255,0.78); }
.brand-card-t__arr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--red);
}
.brand-card-t__arr::after { content: "→"; }
.brand-card-t--dark .brand-card-t__arr { color: #F27A2A; }
@media (max-width: 900px) {
  .our-brands-t__head { grid-template-columns: 1fr; gap: 14px; }
  .our-brands-t__grid { grid-template-columns: 1fr; gap: 12px; }
  .brand-card-t { padding: 30px 26px 26px; }
}
