/* ============================================================
   PROGRESS 株式会社 — Design System v4.0
   Award-level brand site — "作品" quality
   ============================================================ */

/* ── Reset & Variables ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #070707;
  --black-2:    #0d0d0d;
  --black-3:    #141414;
  --black-4:    #1e1e1e;
  --white:      #ffffff;
  --grey-1:     #c0c0c0;
  --grey-2:     #787878;
  --grey-3:     #3a3a3a;
  --orange:     #C09848;
  --orange-2:   #EDD88C;
  --orange-dim: rgba(192,152,72,.08);
  --orange-mid: rgba(192,152,72,.20);
  --green-live: #3ded97;

  /* Champagne Gold — Luxury CTA System */
  --gold:       #C09848;
  --gold-hi:    #EDD88C;
  --gold-dk:    #7A6025;
  --gold-dim:   rgba(192,152,72,.08);
  --gold-mid:   rgba(192,152,72,.25);

  --ff-sans:  'Noto Sans JP', sans-serif;
  --ff-serif: 'Noto Serif JP', serif;
  --ff-en:    'Inter', sans-serif;

  /* Easing curves */
  --expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --circ:   cubic-bezier(0.85, 0, 0.15, 1);
  --reveal: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 72px;
  --px: clamp(22px, 5.5vw, 88px);
  --py: clamp(72px, 11vw, 160px);
  --gap: 10px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font-family: inherit; cursor: none; }
select { cursor: none; }

/* ═══════════════════════════════════════════════════════════════
   CINEMATIC OPENING — "映画のオープニング"
   Timeline: letters drop → shimmer → slash → curtain lifts
════════════════════════════════════════════════════════════════ */
#ci-wrap {
  position: fixed; inset: 0;
  background: #000;
  z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  pointer-events: all;
  will-change: transform;
}
#ci-wrap.ci-exit {
  transform: translateY(-100%);
  transition: transform 1.2s cubic-bezier(0.87, 0, 0.13, 1);
}
#ci-wrap.ci-done { display: none; }

/* Industrial noise overlay */
.ci-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  pointer-events: none; opacity: .5; animation: ciNoise 6s steps(1) infinite;
}
@keyframes ciNoise {
  0%{background-position:0 0} 16%{background-position:-10% -20%} 33%{background-position:8% 12%}
  50%{background-position:-14% 6%} 66%{background-position:5% -15%} 83%{background-position:-8% 18%} 100%{background-position:0 0}
}

/* Bottom vignette gradient */
.ci-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 70%, transparent 20%, rgba(0,0,0,.7) 100%);
  pointer-events: none;
}

/* Corner counter (film-strip feel) */
.ci-counter {
  position: absolute; top: 24px; right: var(--px);
  font-family: var(--ff-en); font-size: 10px; letter-spacing: .38em; color: rgba(255,255,255,.14);
}
.ci-corner-tl {
  position: absolute; top: 28px; left: var(--px);
  font-family: var(--ff-en); font-size: 9px; letter-spacing: .3em; color: rgba(255,255,255,.1);
  opacity: 0; animation: ciFadeIn .6s var(--expo) .8s both;
}
.ci-corner-bl {
  position: absolute; bottom: 24px; left: var(--px);
  font-family: var(--ff-en); font-size: 9px; letter-spacing: .3em; color: rgba(255,255,255,.1);
  opacity: 0; animation: ciFadeIn .6s var(--expo) 1s both;
}
@keyframes ciFadeIn { from{opacity:0} to{opacity:1} }

/* Center content */
.ci-center {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.ci-pre-label {
  font-family: var(--ff-en); font-size: 10px; letter-spacing: .55em; color: rgba(255,255,255,.18);
  text-transform: uppercase; margin-bottom: 28px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .7s var(--expo), transform .7s var(--expo);
}
.ci-pre-label.in { opacity: 1; transform: none; }

/* The PROGRESS letters */
.ci-title {
  display: flex; align-items: baseline;
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(72px, 17vw, 300px);
  letter-spacing: -.04em;
  line-height: 1;
  position: relative;
  user-select: none;
}
.ci-letter {
  display: inline-block;
  color: var(--white);
  opacity: 0;
  transform: translateY(-1.4em) scaleY(1.22);
  filter: blur(6px);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease,
    filter 0.4s ease,
    color 0.6s ease,
    text-shadow 0.6s ease;
  will-change: transform, opacity, filter;
}
.ci-letter.drop {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  filter: blur(0);
}
/* Metallic shimmer on each letter after landing */
.ci-letter.shimmer {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.55);
  text-shadow: 0 0 80px rgba(255,255,255,.08);
  transition:
    color 0.5s ease,
    -webkit-text-stroke 0.5s ease,
    text-shadow 0.5s ease;
}
/* Landing impact flash */
.ci-letter.impact::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, transparent 70%);
  pointer-events: none;
  animation: impactFlash .35s ease forwards;
}
@keyframes impactFlash { 0%{opacity:1} 100%{opacity:0} }

/* Orange horizontal slash */
.ci-slash {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}
.ci-slash::before {
  content: '';
  position: absolute;
  top: 50%; left: -20%;
  width: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--orange), #fff, var(--orange), transparent);
  transform: translateY(-50%);
  box-shadow: 0 0 20px 2px rgba(192,152,72,.6), 0 0 60px 8px rgba(192,152,72,.2);
}
#ci-wrap.ci-slash-go .ci-slash::before {
  animation: slashSweep .7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes slashSweep {
  0% { width: 0; left: -5%; }
  30% { width: 80%; }
  70% { width: 140%; left: -20%; }
  100% { width: 0; left: 120%; }
}

/* Post-slash: thin rule stays */
.ci-rule {
  width: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(192,152,72,.4), transparent);
  margin-top: 22px;
  transition: width 1s var(--expo);
}
.ci-rule.in { width: clamp(160px, 30vw, 400px); }

/* Subtitle after slash */
.ci-sub {
  font-family: var(--ff-en); font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: .48em; color: rgba(255,255,255,.25); text-transform: uppercase;
  margin-top: 16px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .8s var(--expo), transform .8s var(--expo);
}
.ci-sub.in { opacity: 1; transform: none; }

/* Spark particles (created via JS) */
.ci-particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Ground glow after letter impact */
#ci-glow {
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 360px;
  background: radial-gradient(ellipse 80% 100% at center bottom,
    rgba(192,152,72,.28) 0%,
    rgba(192,152,72,.10) 35%,
    rgba(192,152,72,.03) 60%,
    transparent 75%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 2.2s cubic-bezier(0.16,1,0.3,1);
  filter: blur(2px);
}
#ci-glow.in { opacity: 1; }

/* ── Scroll Progress ────────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--orange);
  z-index: 9998;
  pointer-events: none;
  transition: width .05s linear;
}

/* ── Cursor ─────────────────────────────────────────────────── */
#cur-dot, #cur-ring {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
}
#cur-dot  {
  width: 7px; height: 7px;
  background: var(--gold-hi);
  box-shadow: 0 0 6px rgba(237,216,140,.7);
  transition: width .3s var(--expo), height .3s var(--expo);
}
#cur-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(192,152,72,.38);
  box-shadow: 0 0 8px rgba(192,152,72,.12);
  transition: width .4s var(--expo), height .4s var(--expo), border-color .3s, box-shadow .3s;
}
.csr-hover #cur-dot  { width: 12px; height: 12px; box-shadow: 0 0 14px rgba(237,216,140,.8); }
.csr-hover #cur-ring { width: 54px; height: 54px; border-color: rgba(192,152,72,.7); box-shadow: 0 0 18px rgba(192,152,72,.22); }

/* ── Nav ────────────────────────────────────────────────────── */
#nav {
  position: fixed; inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--px);
  transition: background .4s var(--expo), border-color .4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(7,7,7,.94);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-color: rgba(255,255,255,.05);
}
.nav-logo { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-en { font-family: var(--ff-en); font-weight: 800; font-size: 17px; letter-spacing: .32em; line-height: 1; }
.nav-logo-jp { font-size: 9px; letter-spacing: .22em; color: var(--grey-2); line-height: 1; }
.nav-links { display: flex; gap: clamp(16px,2.5vw,42px); list-style: none; align-items: center; }
.nav-links a {
  font-size: 11px; letter-spacing: .18em; color: var(--grey-1);
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--orange);
  transition: width .5s var(--expo);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(105deg, #2A1D06, var(--gold-dk), var(--gold), var(--gold-hi), #F5EBB8, var(--gold-hi), var(--gold), var(--gold-dk), #2A1D06) !important;
  background-size: 300% 100% !important;
  background-position: right center !important;
  color: #0a0a0a !important;
  padding: 10px 22px; font-size: 11px !important;
  font-weight: 700 !important;
  box-shadow: 0 3px 0 rgba(8,5,1,.4), 0 5px 18px rgba(192,152,72,.28) !important;
  transition: background-position .9s cubic-bezier(0.16,1,0.3,1), box-shadow .4s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background-position: left center !important;
  box-shadow: 0 2px 0 rgba(8,5,1,.5), 0 10px 28px rgba(192,152,72,.42), 0 0 40px rgba(237,216,140,.08) !important;
  color: #0a0a0a !important;
}
.nav-burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; padding: 4px; }
.nav-burger span { width: 26px; height: 1px; background: var(--white); display: block; transition: transform .35s var(--expo), opacity .35s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
#mob-nav {
  position: fixed; inset: 0; background: var(--black); z-index: 860;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--px); gap: 6px;
  transform: translateY(-100%); transition: transform .9s var(--expo);
}
#mob-nav.open { transform: translateY(0); }
#mob-nav a {
  font-family: var(--ff-serif); font-size: clamp(26px,5.5vw,48px); font-weight: 700;
  color: var(--grey-1); letter-spacing: .04em;
  opacity: 0; transform: translateY(20px);
  transition: color .3s, opacity .5s var(--expo), transform .5s var(--expo);
}
#mob-nav.open a { opacity: 1; transform: none; }
#mob-nav.open a:nth-child(1){transition-delay:.06s}
#mob-nav.open a:nth-child(2){transition-delay:.11s}
#mob-nav.open a:nth-child(3){transition-delay:.16s}
#mob-nav.open a:nth-child(4){transition-delay:.21s}
#mob-nav.open a:nth-child(5){transition-delay:.26s}
#mob-nav.open a:nth-child(6){transition-delay:.31s}
#mob-nav a:hover { color: var(--orange); }

/* ── Grain Texture ──────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: -100%;
  width: 300%; height: 300%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9985; opacity: .3;
  animation: grain 7s steps(1) infinite;
}
@keyframes grain {
  0%{transform:translate(0,0)} 14%{transform:translate(-7%,-12%)} 28%{transform:translate(-15%,5%)}
  42%{transform:translate(8%,-20%)} 57%{transform:translate(-5%,24%)} 71%{transform:translate(14%,-3%)}
  85%{transform:translate(-9%,11%)} 100%{transform:translate(0,0)}
}

/* ═══════════════════════════════════════════════════════════════
   CLIP-PATH IMAGE REVEAL SYSTEM
   Use: wrap in .cr-wrap, child is .cr-inner, JS adds .in
════════════════════════════════════════════════════════════════ */
.cr-wrap { overflow: hidden; position: relative; }
.cr-inner {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s var(--reveal);
}
.cr-inner img, .cr-inner video {
  transform: scale(1.06);
  transition: transform 1.4s var(--reveal);
}
.cr-inner.in { clip-path: inset(0 0% 0 0); }
.cr-inner.in img, .cr-inner.in video { transform: scale(1); }

/* Alternative: reveal up */
.cr-up .cr-inner  { clip-path: inset(100% 0 0 0); }
.cr-up .cr-inner.in { clip-path: inset(0 0 0 0); }

/* ═══════════════════════════════════════════════════════════════
   HERO CINEMATIC SCENE
════════════════════════════════════════════════════════════════ */
.hero-scene { height: 280vh; position: relative; }
.hero-sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; display: flex; align-items: flex-end; }
.hero-img { position: absolute; inset: 0; will-change: transform; }
.hero-img img { object-position: 62% center; }

/* Hero image base scale (RAF handles animated scale via parent div) */

.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(7,7,7,1) 0%, rgba(7,7,7,.72) 26%, rgba(7,7,7,.18) 52%, rgba(7,7,7,.35) 100%),
    linear-gradient(108deg, rgba(7,7,7,.62) 0%, rgba(7,7,7,.04) 55%, transparent 100%);
  will-change: opacity;
}
.hero-content {
  position: relative; z-index: 10; width: 100%;
  padding: 0 var(--px) clamp(52px,8vw,116px);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
  will-change: opacity, transform;
}
.hero-eyebrow-line { width: 36px; height: 1px; background: var(--orange); flex-shrink: 0; }
.hero-eyebrow-text { font-family: var(--ff-en); font-size: 10px; font-weight: 500; letter-spacing: .4em; color: var(--orange); text-transform: uppercase; }

.hero-title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(52px, 10vw, 152px);
  line-height: 1.0;
  letter-spacing: .02em;
  margin-bottom: 36px;
}
.hero-title-line { display: block; overflow: hidden; }
.hero-title-inner { display: block; will-change: transform, opacity; }
.hero-rule { width: 56px; height: 1px; background: rgba(255,255,255,.18); margin-bottom: 22px; will-change: opacity, transform; }
.hero-sub {
  font-size: clamp(13px,1.25vw,15px); color: var(--grey-1); letter-spacing: .09em;
  max-width: 440px; line-height: 2.1; will-change: opacity, transform;
}
.hero-ctas { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; will-change: opacity, transform; }
.hero-scroll-ind {
  position: absolute; left: var(--px); bottom: clamp(28px,5vw,68px); z-index: 10;
  display: flex; align-items: center; gap: 12px; will-change: opacity;
}
.hsi-line { width: 42px; height: 1px; background: rgba(255,255,255,.2); position: relative; overflow: hidden; }
.hsi-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--orange);
  animation: scanLine 2.2s ease-in-out infinite;
}
@keyframes scanLine { 0%{left:-100%} 50%{left:0%} 100%{left:100%} }
.hsi-text { font-family: var(--ff-en); font-size: 9px; letter-spacing: .4em; color: rgba(255,255,255,.3); text-transform: uppercase; }
.hero-vert {
  position: absolute; right: var(--px); top: 50%; transform: translateY(-50%);
  writing-mode: vertical-rl; font-family: var(--ff-en); font-size: 9px; letter-spacing: .4em;
  color: rgba(255,255,255,.22); text-transform: uppercase; z-index: 10;
  display: flex; align-items: center; gap: 12px; will-change: opacity;
}
.hero-vert::before { content: ''; width: 1px; height: 44px; background: rgba(255,255,255,.18); }

/* ── Buttons ────────────────────────────────────────────────── */
/* ── Metallic Gold CTA Buttons ──────────────────────────────── */
@keyframes goldShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.btn-orange {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(
    105deg,
    #2A1D06 0%,
    var(--gold-dk) 14%,
    var(--gold) 28%,
    var(--gold-hi) 42%,
    #F5EBB8 50%,
    var(--gold-hi) 58%,
    var(--gold) 72%,
    var(--gold-dk) 86%,
    #2A1D06 100%
  );
  background-size: 300% 100%;
  background-position: right center;
  color: #0a0a0a;
  padding: 14px 36px; font-size: 11px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; border: none;
  box-shadow:
    0 1px 0 rgba(255,255,255,.06),
    0 4px 0 rgba(8,5,1,.5),
    0 6px 24px rgba(192,152,72,.22),
    inset 0 1px 0 rgba(255,255,255,.46),
    inset 0 -1px 0 rgba(0,0,0,.28);
  transition: background-position .9s cubic-bezier(0.16,1,0.3,1),
              transform .4s var(--expo),
              gap .3s,
              box-shadow .4s;
}
.btn-orange:hover {
  background-position: left center;
  transform: translateY(-3px);
  gap: 20px;
  box-shadow:
    0 0 0 1px rgba(237,216,140,.16),
    0 2px 0 rgba(8,5,1,.6),
    0 20px 56px rgba(192,152,72,.40),
    0 0 80px rgba(237,216,140,.10),
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -1px 0 rgba(0,0,0,.32);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; color: var(--grey-1);
  padding: 13px 36px; font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.16);
  transition: border-color .4s, color .4s, background .4s, gap .3s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-hi);
  background: var(--gold-dim);
  gap: 20px;
}

/* ── Ticker ─────────────────────────────────────────────────── */
#ticker {
  background: linear-gradient(105deg, var(--gold-dk), var(--gold), var(--gold-hi), var(--gold), var(--gold-dk));
  overflow: hidden; padding: 13px 0;
  box-shadow: 0 2px 0 rgba(8,5,1,.4);
}
.tkr-track { display: flex; animation: tkrRun 38s linear infinite; white-space: nowrap; }
.tkr-item { display: inline-flex; align-items: center; gap: 26px; padding-right: 26px; flex-shrink: 0; }
.tkr-t { font-family: var(--ff-en); font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: #1A1200; }
.tkr-j { font-size: 12px; font-weight: 800; letter-spacing: .12em; color: #1A1200; }
.tkr-dot { width: 3px; height: 3px; background: rgba(26,18,0,.28); border-radius: 50%; }
@keyframes tkrRun { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── Section Label ──────────────────────────────────────────── */
.s-label { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.s-label-line { width: 20px; height: 1px; background: var(--orange); flex-shrink: 0; }
.s-label-text { font-family: var(--ff-en); font-size: 10px; letter-spacing: .38em; color: var(--orange); text-transform: uppercase; }
.s-heading { font-family: var(--ff-serif); font-size: clamp(28px,3.8vw,52px); font-weight: 700; letter-spacing: .04em; line-height: 1.3; }

/* ── Statement ──────────────────────────────────────────────── */
#statement { padding: var(--py) var(--px); position: relative; overflow: hidden; }
.stmt-bg {
  position: absolute; right: -.04em; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-en); font-size: clamp(120px,22vw,360px); font-weight: 900;
  line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.04);
  pointer-events: none; user-select: none; letter-spacing: -.05em;
}
.stmt-layout { display: grid; grid-template-columns: 48px 1fr; gap: clamp(28px,4vw,56px); position: relative; }
.stmt-vert {
  writing-mode: vertical-rl; font-family: var(--ff-en); font-size: 9px; letter-spacing: .42em;
  color: var(--orange); text-transform: uppercase;
  display: flex; align-items: center; gap: 12px; padding-top: 4px;
}
.stmt-vert::before { content: ''; width: 1px; height: 40px; background: var(--orange); }
.stmt-h { font-family: var(--ff-serif); font-size: clamp(34px,5.5vw,80px); font-weight: 700; line-height: 1.4; letter-spacing: .03em; margin-bottom: 40px; }
.stmt-h .hl { color: var(--orange); }
.stmt-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px clamp(28px,4vw,60px); border-top: 1px solid rgba(255,255,255,.07); padding-top: 36px; }
.stmt-col-label { font-family: var(--ff-en); font-size: 9px; letter-spacing: .38em; color: var(--orange); text-transform: uppercase; margin-bottom: 10px; }
.stmt-col-text { font-size: 14px; color: var(--grey-1); line-height: 2.05; }

/* ── Stats ──────────────────────────────────────────────────── */
#stats { border-top: 1px solid rgba(255,255,255,.05); }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell {
  padding: clamp(52px,7vw,96px) clamp(24px,3.5vw,52px);
  border-right: 1px solid rgba(255,255,255,.05);
  position: relative; overflow: hidden;
}
.stat-cell:last-child { border-right: none; }
.stat-cell::before {
  content: attr(data-watermark);
  position: absolute; bottom: -0.15em; right: -0.05em;
  font-family: var(--ff-en); font-size: clamp(80px,13vw,200px); font-weight: 900;
  line-height: 1; letter-spacing: -.05em;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.03);
  pointer-events: none; user-select: none;
  transition: color 1.2s var(--expo);
}
.stat-cell::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dk), var(--gold), var(--gold-hi), var(--gold), var(--gold-dk));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.6s var(--expo);
}
.stat-cell.lit::after { transform: scaleX(1); }
.stat-num { font-family: var(--ff-en); font-size: clamp(64px,8.5vw,128px); font-weight: 900; line-height: 1; display: flex; align-items: baseline; gap: 4px; letter-spacing: -.04em; }
.stat-unit { font-family: var(--ff-sans); font-size: clamp(22px,3vw,42px); font-weight: 300; color: var(--orange); }
.stat-lbl { margin-top: 20px; font-size: 13px; color: var(--grey-1); line-height: 1.7; letter-spacing: .07em; }
.stat-sub { display: block; font-size: 11px; color: var(--grey-2); margin-top: 5px; }

/* ── Business ───────────────────────────────────────────────── */
#business { padding-bottom: 0; }
.biz-head { display: flex; justify-content: space-between; align-items: flex-end; padding: var(--py) var(--px) clamp(36px,4.5vw,64px); gap: 28px; flex-wrap: wrap; }
.biz-see { font-family: var(--ff-en); font-size: 11px; letter-spacing: .22em; color: var(--orange); text-transform: uppercase; display: flex; align-items: center; gap: 10px; transition: gap .3s; }
.biz-see:hover { gap: 18px; }
.biz-grid { display: grid; grid-template-columns: 3fr 2fr; }
.biz-card { position: relative; overflow: hidden; min-height: clamp(400px,62vh,740px); display: flex; align-items: flex-end; }
.biz-card-img { position: absolute; inset: 0; transition: transform 1.2s var(--expo); }
.biz-card:hover .biz-card-img { transform: scale(1.04); }
.biz-card-img::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(7,7,7,.96) 0%, rgba(7,7,7,.42) 48%, rgba(7,7,7,.08) 100%),
    linear-gradient(to right, rgba(7,7,7,.42) 0%, transparent 65%);
  transition: opacity 1s;
}
.biz-card:hover .biz-card-img::after { opacity: .82; }
.biz-card-body { position: relative; z-index: 10; padding: clamp(28px,4vw,56px); }
.biz-num { font-family: var(--ff-en); font-size: 10px; letter-spacing: .4em; color: var(--orange); margin-bottom: 10px; }
.biz-title-en { display: block; font-family: var(--ff-en); font-size: 10px; letter-spacing: .28em; color: var(--grey-1); text-transform: uppercase; margin-bottom: 6px; }
.biz-title { font-family: var(--ff-serif); font-size: clamp(26px,3.2vw,48px); font-weight: 700; letter-spacing: .04em; margin-bottom: 18px; }
.biz-text { font-size: 14px; color: var(--grey-1); line-height: 1.95; max-width: 340px; margin-bottom: 22px; }
.biz-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-en); font-size: 10px; letter-spacing: .22em; color: var(--orange); text-transform: uppercase; transition: gap .3s; }
.biz-link:hover { gap: 18px; }
.biz-card.b2 { border-left: 1px solid rgba(255,255,255,.05); }

/* ── Works Carousel ─────────────────────────────────────────── */
#works { padding: var(--py) 0; overflow: hidden; }
.works-head { display: flex; justify-content: space-between; align-items: flex-end; padding: 0 var(--px); margin-bottom: clamp(32px,4.5vw,56px); gap: 22px; flex-wrap: wrap; }
.works-nav { display: flex; gap: 8px; }
.works-nav-btn { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.12); background: transparent; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: border-color .3s, background .3s, color .3s; }
.works-nav-btn:hover { border-color: var(--orange); background: var(--orange-dim); color: var(--orange); }
.works-track { display: flex; gap: var(--gap); padding: 0 var(--px); overflow-x: auto; scrollbar-width: none; cursor: grab; -webkit-overflow-scrolling: touch; }
.works-track::-webkit-scrollbar { display: none; }
.works-track:active { cursor: grabbing; }
.works-item { flex-shrink: 0; width: clamp(240px,32vw,440px); position: relative; overflow: hidden; }
.works-img { height: clamp(320px,48vh,560px); position: relative; overflow: hidden; }
.works-img img { transition: transform 1.1s var(--expo); }
.works-item:hover .works-img img { transform: scale(1.05); }
.works-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,7,7,.9) 0%, transparent 58%); }
.works-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 22px 24px; }
.works-tag { font-family: var(--ff-en); font-size: 9px; letter-spacing: .38em; color: var(--orange); text-transform: uppercase; margin-bottom: 5px; }
.works-name { font-size: 13px; font-weight: 700; letter-spacing: .06em; line-height: 1.5; }
.works-arrow { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--grey-1); z-index: 2; opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s var(--expo), border-color .3s, color .3s; }
.works-item:hover .works-arrow { opacity: 1; transform: none; border-color: var(--orange); color: var(--orange); }

/* ── Safety ─────────────────────────────────────────────────── */
#safety { display: grid; grid-template-columns: 55fr 45fr; min-height: clamp(560px,86vh,1000px); }
.safety-img { position: relative; overflow: hidden; }
.safety-img img { object-position: center 20%; transition: transform 14s ease; }
#safety.in-view .safety-img img { transform: scale(1.07); }
.safety-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 68%, var(--black-3) 100%),
              linear-gradient(to top, rgba(7,7,7,.5) 0%, transparent 40%);
}
.safety-body {
  background: var(--black-3); display: flex; flex-direction: column; justify-content: center;
  padding: clamp(36px,5.5vw,88px) clamp(28px,4vw,72px);
}
.safety-zero {
  font-family: var(--ff-en); font-size: clamp(96px,15vw,200px); font-weight: 900;
  line-height: .85; color: transparent; -webkit-text-stroke: 2px var(--gold);
  letter-spacing: -.04em; margin-bottom: 10px;
  text-shadow: 0 0 80px rgba(192,152,72,.18);
}
.safety-sublbl { font-family: var(--ff-en); font-size: 9px; letter-spacing: .4em; color: var(--orange); text-transform: uppercase; margin-bottom: 28px; }
.safety-h { font-family: var(--ff-serif); font-size: clamp(22px,2.8vw,36px); font-weight: 700; line-height: 1.65; letter-spacing: .04em; margin-bottom: 20px; }
.safety-p { font-size: 14px; color: var(--grey-1); line-height: 2.05; max-width: 400px; margin-bottom: 28px; }
.safety-list { display: flex; flex-direction: column; gap: 11px; }
.safety-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--grey-1); list-style: none; }
.safety-list li::before { content: ''; width: 4px; height: 4px; background: var(--orange); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   PROGRESS SYSTEM UI SECTION
════════════════════════════════════════════════════════════════ */
#system {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: clamp(560px,80vh,960px);
  background: var(--black-2);
  overflow: hidden;
}
.sys-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px,6vw,96px) clamp(28px,4vw,72px) clamp(40px,6vw,96px) var(--px);
}
.sys-h { font-family: var(--ff-serif); font-size: clamp(28px,3.5vw,52px); font-weight: 700; line-height: 1.4; letter-spacing: .04em; margin-bottom: 22px; }
.sys-sub { font-size: 14px; color: var(--grey-1); line-height: 2.1; margin-bottom: 32px; max-width: 420px; }
.sys-feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.sys-feature { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--grey-1); }
.sys-feature-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

/* Dashboard Mockup */
.sys-ui-panel {
  display: flex; align-items: center; justify-content: center;
  padding: clamp(28px,4vw,56px);
  position: relative;
  background: linear-gradient(135deg, rgba(192,152,72,.03) 0%, transparent 60%);
}
.sys-ui-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 50%, rgba(192,152,72,.08) 0%, transparent 65%);
}
.sys-ui {
  width: 100%; max-width: 520px;
  background: rgba(8,8,8,.76);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 48px 96px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06), inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  position: relative; z-index: 1;
  font-family: var(--ff-en);
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  transition: transform .7s var(--expo), box-shadow .7s var(--expo);
}
.sys-ui:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
  box-shadow: 0 60px 120px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.08), inset 0 1px 0 rgba(255,255,255,.12), 0 0 40px rgba(192,152,72,.06);
}
.sys-titlebar {
  background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 13px 16px; display: flex; align-items: center; gap: 10px;
}
.sys-dots { display: flex; gap: 5px; }
.sys-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.sys-dots i:nth-child(1) { background: #ff5f57; }
.sys-dots i:nth-child(2) { background: #febc2e; }
.sys-dots i:nth-child(3) { background: #28c840; }
.sys-title { font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.45); margin-left: auto; }
.sys-live { display: flex; align-items: center; gap: 5px; font-size: 10px; color: var(--green-live); }
.sys-live::before { content: ''; width: 6px; height: 6px; background: var(--green-live); border-radius: 50%; animation: livePulse 1.6s ease infinite; }
@keyframes livePulse { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(61,237,151,.5)} 50%{opacity:.8;box-shadow:0 0 0 4px rgba(61,237,151,0)} }
.sys-body-inner { padding: 18px; }
.sys-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.sys-metric { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 6px; padding: 12px 10px; text-align: center; }
.sys-metric-num { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -.03em; display: block; }
.sys-metric-lbl { font-size: 9px; color: rgba(255,255,255,.35); letter-spacing: .08em; display: block; margin-top: 3px; }
.sys-metric.ok .sys-metric-num { color: var(--green-live); }
.sys-rows { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.sys-row { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.025); border-radius: 5px; padding: 9px 12px; }
.sys-row-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.sys-row-dot.g { background: var(--green-live); }
.sys-row-dot.o { background: var(--orange); }
.sys-row-dot.b { background: #4d9fff; }
.sys-row-name { font-size: 11px; color: rgba(255,255,255,.65); flex: 1; letter-spacing: .03em; }
.sys-row-pct { font-size: 11px; color: rgba(255,255,255,.4); font-weight: 600; }
.sys-prog-bar { height: 3px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; margin-bottom: 12px; }
.sys-prog-fill { height: 100%; background: linear-gradient(to right, var(--orange), var(--orange-2)); border-radius: 2px; animation: progFill 2s var(--expo) .5s both; }
@keyframes progFill { from{width:0} to{width:78%} }
.sys-update { font-size: 9px; color: rgba(255,255,255,.22); letter-spacing: .08em; text-align: right; }

/* ── System Module Cards ────────────────────────────────────── */
.sys-module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 24px 0 28px;
}
.sys-module-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: border-color .35s, background .35s;
}
.sys-module-card:hover { border-color: rgba(192,152,72,.28); background: rgba(192,152,72,.04); }
.sys-module-featured {
  grid-column: 1 / -1;
  border-color: rgba(192,152,72,.18);
  background: rgba(192,152,72,.04);
  position: relative;
}
.sys-mod-icon { flex-shrink: 0; opacity: .85; padding-top: 1px; }
.sys-mod-name { font-family: var(--ff-en); font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--white); margin-bottom: 3px; }
.sys-mod-desc { font-size: 11px; color: rgba(255,255,255,.35); line-height: 1.6; }
.sys-mod-badge {
  position: absolute; top: 12px; right: 14px;
  font-family: var(--ff-en); font-size: 9px; letter-spacing: .28em; font-weight: 700;
  color: var(--orange); text-transform: uppercase;
  border: 1px solid var(--orange-mid); padding: 3px 8px;
}
.sys-dx-note {
  font-family: var(--ff-en); font-size: 12px; letter-spacing: .18em; color: rgba(255,255,255,.28);
  margin-bottom: 0;
}

/* Phone Mockup */
.sys-phone {
  position: absolute;
  bottom: 20px; right: 10px;
  width: 130px;
  background: rgba(14,14,14,.98);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06);
  z-index: 2;
}
.sys-phone-notch {
  width: 40px; height: 8px; background: rgba(0,0,0,.9);
  border-radius: 0 0 8px 8px; margin: 0 auto 10px;
}
.sys-phone-body { padding: 0 10px 14px; font-family: var(--ff-en); }
.sys-phone-ttl { font-size: 11px; font-weight: 700; letter-spacing: .06em; color: rgba(255,255,255,.7); margin-bottom: 8px; }
.sys-phone-row { display: flex; align-items: center; gap: 5px; margin-bottom: 6px; }
.sys-phone-field { font-size: 9px; color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); border-radius: 3px; padding: 5px 6px; margin-bottom: 4px; line-height: 1.4; }
.sys-phone-cam { display: flex; align-items: center; gap: 6px; border: 1px dashed rgba(255,255,255,.12); border-radius: 4px; padding: 6px; margin-bottom: 6px; justify-content: center; }
.sys-phone-btn { background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-align: center; padding: 7px; border-radius: 3px; }


/* ── Creative Growth Planner Brand Section ───────────────────── */
#lp-products {
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.06);
  background: var(--black);
}
.lp-head { padding: var(--py) var(--px) clamp(36px,4.5vw,60px); }

/* Brand showcase: identity left, services right */
.cgp-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.06);
  min-height: clamp(500px,68vh,820px);
}

/* ── Left: Brand identity ── */
.cgp-identity {
  padding: clamp(52px,7vw,104px) var(--px);
  background: var(--black-3);
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.cgp-identity::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 15% 90%, rgba(192,152,72,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cgp-parent {
  font-family: var(--ff-en); font-size: 9px; letter-spacing: .35em;
  color: rgba(255,255,255,.28); text-transform: uppercase; margin-bottom: 26px;
  position: relative;
}
.cgp-abbr {
  font-family: var(--ff-en); font-size: clamp(11px,1.2vw,14px); font-weight: 800;
  letter-spacing: .38em; color: var(--gold-hi); text-transform: uppercase;
  border: 1px solid var(--gold-mid); padding: 6px 16px;
  display: inline-block; margin-bottom: 22px; position: relative;
  background: var(--gold-dim);
}
.cgp-brand-name {
  font-family: var(--ff-en); font-size: clamp(38px,5.2vw,82px); font-weight: 900;
  letter-spacing: -.03em; line-height: .9; text-transform: uppercase;
  margin-bottom: 30px; position: relative;
}
.cgp-brand-name span { display: block; }
.cgp-brand-name .cgp-accent { color: var(--orange); }
.cgp-tagline {
  font-size: clamp(12px,1.2vw,14px); color: var(--grey-1); line-height: 2.1;
  border-left: 2px solid var(--orange); padding-left: 18px;
  margin-bottom: 36px; max-width: 400px; position: relative;
}
.cgp-status {
  font-family: var(--ff-en); font-size: 10px; letter-spacing: .26em;
  color: var(--orange); display: flex; align-items: center; gap: 10px;
  text-transform: uppercase; position: relative;
  text-decoration: none; transition: opacity .25s;
}
.cgp-status:hover { opacity: .7; }
.cgp-status::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ── Right: Services ── */
.cgp-services {
  padding: clamp(52px,7vw,104px) var(--px);
  display: flex; flex-direction: column; justify-content: center;
}
.cgp-services-lbl {
  font-family: var(--ff-en); font-size: 9px; letter-spacing: .42em;
  color: var(--orange); text-transform: uppercase; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.cgp-services-lbl::before { content: ''; width: 20px; height: 1px; background: var(--orange); flex-shrink: 0; }
.cgp-list {
  list-style: none; margin-bottom: 40px;
}
.cgp-list li {
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: var(--ff-serif); font-size: clamp(14px,1.8vw,22px); font-weight: 700;
  letter-spacing: .04em; display: flex; align-items: center; gap: 16px;
  transition: color .35s, gap .35s var(--expo);
}
.cgp-list li:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.cgp-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0; transition: transform .35s var(--expo);
}
.cgp-list li:hover { color: var(--orange); gap: 24px; }
.cgp-list li:hover::before { transform: scale(1.5); }
.cgp-note {
  font-size: 13px; color: var(--grey-2); line-height: 2.05; max-width: 480px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06);
}

/* ── Instagram Section ──────────────────────────────────────── */
#sns { padding: var(--py) var(--px); background: var(--black-2); }
.sns-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px,3.5vw,48px); }
.sns-h { font-family: var(--ff-serif); font-size: clamp(22px,3vw,42px); font-weight: 700; letter-spacing: .04em; line-height: 1.3; }
.sns-link {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,.12); padding: 13px 22px;
  font-size: 13px; letter-spacing: .06em; color: var(--grey-1); white-space: nowrap;
  transition: border-color .3s, color .3s;
}
.sns-link:hover { border-color: var(--orange); color: var(--white); }
.sns-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.sns-photo { aspect-ratio: 1; overflow: hidden; position: relative; }
.sns-photo img { transition: transform 1.1s var(--expo); }
.sns-photo:hover img { transform: scale(1.07); }
.sns-photo-last { background: rgba(0,0,0,.5); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.sns-photo-last img { filter: brightness(.32); }
.sns-photo-last-text { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 6px; }

/* ── Recruit Preview ─────────────────────────────────────────── */
#recruit-preview { padding: var(--py) var(--px); background: var(--black); }
.rp-lead { font-family: var(--ff-serif); font-size: clamp(18px,2.2vw,28px); font-weight: 600; line-height: 1.75; letter-spacing: .04em; color: var(--grey-1); max-width: 600px; margin: 22px 0 clamp(36px,4.5vw,60px); }
.rp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rp-card {
  background: var(--black-3); border: 1px solid rgba(255,255,255,.05);
  padding: clamp(28px,3.5vw,48px); position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s var(--expo);
}
.rp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dk), var(--gold), var(--gold-hi), var(--gold), var(--gold-dk));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.1s var(--expo);
}
.rp-card:hover { border-color: rgba(192,152,72,.18); transform: translateY(-4px); }
.rp-card:hover::before { transform: scaleX(1); }
.rp-badge { font-family: var(--ff-en); font-size: 9px; letter-spacing: .4em; color: var(--orange); text-transform: uppercase; margin-bottom: 12px; }
.rp-title { font-family: var(--ff-serif); font-size: clamp(22px,2.5vw,32px); font-weight: 700; letter-spacing: .04em; margin-bottom: 22px; }
.rp-wage { font-family: var(--ff-en); font-size: clamp(40px,4.8vw,64px); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.rp-wage-u { font-size: 14px; font-weight: 400; color: var(--grey-1); margin-left: 4px; }
.rp-note { font-size: 11px; color: var(--grey-2); letter-spacing: .04em; margin-top: 5px; margin-bottom: 22px; }
.rp-divider { border: none; border-top: 1px solid rgba(255,255,255,.06); margin: 20px 0; }
.rp-specs { display: flex; flex-direction: column; gap: 9px; }
.rp-spec { display: flex; gap: 14px; font-size: 13px; }
.rp-spec-k { color: var(--grey-2); min-width: 68px; flex-shrink: 0; }
.rp-spec-v { color: var(--grey-1); }
.rp-cta { margin-top: clamp(36px,4vw,56px); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.rp-note-txt { font-size: 13px; color: var(--grey-1); line-height: 1.9; border-left: 2px solid var(--orange); padding-left: 18px; }

/* ── Message ─────────────────────────────────────────────────── */
#message { padding: 0; }
.msg-pull {
  padding: clamp(52px,7vw,96px) var(--px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative; overflow: hidden;
}
.msg-pull::before {
  content: '"';
  position: absolute; top: -0.18em; left: calc(var(--px) - 0.06em);
  font-family: var(--ff-serif); font-size: clamp(120px,20vw,280px); font-weight: 700; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.04);
  pointer-events: none; user-select: none;
}
.msg-pull-quote {
  font-family: var(--ff-serif); font-size: clamp(26px,4vw,58px); font-weight: 700;
  line-height: 1.45; letter-spacing: .04em;
  max-width: 820px; position: relative;
}
.msg-pull-quote .hl { color: var(--orange); }
.msg-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px,5.5vw,88px); align-items: start; padding: clamp(52px,7vw,96px) var(--px); }
.msg-img-inner { height: clamp(420px,60vh,720px); overflow: hidden; }
.msg-img-inner img { transition: transform 1.1s var(--expo); }
.msg-img-inner:hover img { transform: scale(1.03); }
.msg-img-cap { font-family: var(--ff-en); font-size: 9px; letter-spacing: .3em; color: var(--grey-2); text-transform: uppercase; margin-top: 10px; }
.msg-quote { font-family: var(--ff-serif); font-size: clamp(16px,1.8vw,22px); font-weight: 600; line-height: 1.9; letter-spacing: .04em; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 28px; color: var(--grey-1); }
.msg-p { font-size: 14px; color: var(--grey-1); line-height: 2.15; margin-bottom: 18px; }
.msg-sig {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: flex-end; gap: 16px;
}
.msg-sig-text { font-size: 11px; letter-spacing: .1em; color: var(--grey-2); line-height: 1.8; }
.msg-sig strong { display: block; font-family: var(--ff-serif); font-size: 22px; font-weight: 700; color: var(--white); margin-top: 4px; letter-spacing: .08em; }
.msg-sig-role { font-family: var(--ff-en); font-size: 8px; letter-spacing: .38em; color: var(--orange); text-transform: uppercase; margin-bottom: 4px; }

/* ── Company ─────────────────────────────────────────────────── */
#company { padding: var(--py) var(--px); background: var(--black-2); }
.co-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5.5vw,88px); margin-top: clamp(40px,5vw,64px); align-items: start; }
.co-table { width: 100%; border-collapse: collapse; }
.co-table tr { border-bottom: 1px solid rgba(255,255,255,.06); }
.co-table tr:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.co-table td { padding: 16px 0; font-size: 14px; vertical-align: top; line-height: 1.75; }
.co-table td:first-child { color: var(--grey-2); min-width: 106px; padding-right: 22px; letter-spacing: .06em; }
.co-table td:last-child { color: var(--grey-1); }
.co-table a { color: var(--grey-1); transition: color .3s; }
.co-table a:hover { color: var(--orange); }
.co-vis { display: flex; flex-direction: column; gap: 14px; }
.co-img { height: clamp(260px,36vw,420px); overflow: hidden; }
.co-img img { transition: transform 1.1s var(--expo); }
.co-img:hover img { transform: scale(1.04); }
.co-lic { background: var(--orange-dim); border: 1px solid var(--orange-mid); padding: 18px 22px; font-size: 12px; color: var(--grey-1); letter-spacing: .07em; line-height: 1.9; }

/* ── Contact ─────────────────────────────────────────────────── */
#contact { padding: var(--py) var(--px); }
.ct-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: clamp(40px,5.5vw,88px); margin-top: clamp(40px,5vw,64px); }
.ct-info { display: flex; flex-direction: column; gap: 32px; }
.ct-item-tag { font-family: var(--ff-en); font-size: 9px; letter-spacing: .4em; color: var(--orange); text-transform: uppercase; margin-bottom: 5px; }
.ct-item-val { font-size: 17px; font-weight: 500; letter-spacing: .06em; transition: color .3s; }
.ct-item-val:hover { color: var(--orange); }
.ct-item-note { display: block; font-size: 11px; color: var(--grey-2); margin-top: 3px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-g { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-lbl { font-size: 11px; letter-spacing: .1em; color: var(--grey-2); }
.form-lbl .req { color: var(--orange); margin-left: 3px; }
.form-inp, .form-ta, .form-sel {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  color: var(--white); padding: 13px 15px; font-family: var(--ff-sans); font-size: 14px;
  width: 100%; outline: none; border-radius: 0; -webkit-appearance: none;
  transition: border-color .3s, background .3s;
}
.form-inp:focus, .form-ta:focus, .form-sel:focus { border-color: var(--orange); background: rgba(192,152,72,.03); }
.form-ta { min-height: 110px; resize: vertical; }
.form-submit {
  background: linear-gradient(
    105deg,
    #2A1D06 0%, var(--gold-dk) 14%, var(--gold) 28%,
    var(--gold-hi) 42%, #F5EBB8 50%, var(--gold-hi) 58%,
    var(--gold) 72%, var(--gold-dk) 86%, #2A1D06 100%
  );
  background-size: 300% 100%;
  background-position: right center;
  color: #0a0a0a; border: none;
  padding: 15px 44px; font-family: var(--ff-sans); font-size: 12px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  box-shadow:
    0 1px 0 rgba(255,255,255,.05),
    0 4px 0 rgba(8,5,1,.5),
    0 6px 22px rgba(192,152,72,.22),
    inset 0 1px 0 rgba(255,255,255,.46),
    inset 0 -1px 0 rgba(0,0,0,.28);
  transition: background-position .9s cubic-bezier(0.16,1,0.3,1), transform .3s var(--expo), box-shadow .4s;
  margin-top: 6px;
}
.form-submit:hover {
  background-position: left center;
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(237,216,140,.14),
    0 2px 0 rgba(8,5,1,.6),
    0 18px 48px rgba(192,152,72,.40),
    0 0 70px rgba(237,216,140,.08),
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -1px 0 rgba(0,0,0,.32);
}

/* ── Footer ─────────────────────────────────────────────────── */
.ft-cta {
  background: var(--black-2);
  padding: clamp(60px,8vw,112px) var(--px);
  display: flex; justify-content: space-between; align-items: center;
  gap: 28px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative; overflow: hidden;
}
.ft-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(192,152,72,.08) 0%, transparent 65%);
  pointer-events: none;
}
.ft-cta-h {
  font-family: var(--ff-serif); font-size: clamp(28px,4.2vw,62px); font-weight: 700;
  line-height: 1.35; letter-spacing: .04em; position: relative;
}
.ft-cta-sub { font-size: 14px; color: var(--grey-1); margin-top: 10px; }

#footer {
  background: var(--black); border-top: 1px solid rgba(255,255,255,.05);
  padding: clamp(52px,7vw,96px) var(--px) 28px;
  position: relative; overflow: hidden;
}
#footer::before {
  content: 'P'; position: absolute; right: -.04em; bottom: -.2em;
  font-family: var(--ff-en); font-size: clamp(200px,36vw,560px); font-weight: 900; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.018);
  pointer-events: none; user-select: none;
}
.ft-top { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(36px,5vw,72px); margin-bottom: clamp(40px,5vw,72px); position: relative; }
.ft-brand-en { font-family: var(--ff-en); font-weight: 800; font-size: 19px; letter-spacing: .34em; }
.ft-brand-jp { font-size: 9px; letter-spacing: .22em; color: var(--grey-2); margin-top: 2px; margin-bottom: 18px; }
.ft-addr { font-size: 12px; color: var(--grey-2); line-height: 1.9; font-style: normal; }
.ft-addr a { color: var(--grey-2); transition: color .3s; }
.ft-addr a:hover { color: var(--white); }
.ft-insta-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 12px; letter-spacing: .06em; color: var(--grey-2); transition: color .3s; }
.ft-insta-link:hover { color: var(--white); }
.ft-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,2.5vw,44px); }
.ft-nav-ttl { font-family: var(--ff-en); font-size: 9px; letter-spacing: .4em; color: var(--orange); text-transform: uppercase; margin-bottom: 16px; }
.ft-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-nav-col a { font-size: 12px; color: var(--grey-2); letter-spacing: .06em; transition: color .3s; }
.ft-nav-col a:hover { color: var(--white); }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.05); gap: 16px; flex-wrap: wrap; position: relative; }
.ft-copy { font-size: 10px; color: var(--grey-2); letter-spacing: .1em; }
.ft-lic  { font-size: 10px; color: var(--grey-2); letter-spacing: .05em; text-align: right; line-height: 1.8; }

/* ── Reveal Animations ──────────────────────────────────────── */
.rv  { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--expo), transform 1s var(--expo); }
.rvl { opacity: 0; transform: translateX(-40px); transition: opacity 1s var(--expo), transform 1s var(--expo); }
.rvr { opacity: 0; transform: translateX(40px);  transition: opacity 1s var(--expo), transform 1s var(--expo); }
.rv.in, .rvl.in, .rvr.in { opacity: 1; transform: none; }
.d1{transition-delay:.1s!important}.d2{transition-delay:.2s!important}.d3{transition-delay:.3s!important}
.d4{transition-delay:.4s!important}.d5{transition-delay:.5s!important}

/* ── Page Hero (Inner Pages) ────────────────────────────────── */
.pg-hero {
  position: relative; height: clamp(300px,48vh,520px);
  display: flex; align-items: flex-end;
  margin-top: var(--nav-h); overflow: hidden;
}
.pg-hero-img { position: absolute; inset: 0; }
.pg-hero-img img { transition: transform 1.1s var(--expo); }
.pg-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(7,7,7,.94) 0%, rgba(7,7,7,.42) 55%, rgba(7,7,7,.3) 100%),
    linear-gradient(108deg, rgba(7,7,7,.58) 0%, transparent 58%);
}
.pg-hero-body { position: relative; z-index: 2; padding: 0 var(--px) clamp(36px,4.5vw,60px); }
.pg-hero-en { font-family: var(--ff-en); font-size: 10px; letter-spacing: .4em; color: var(--orange); text-transform: uppercase; margin-bottom: 10px; }
.pg-hero-title { font-family: var(--ff-serif); font-size: clamp(36px,5.5vw,68px); font-weight: 700; letter-spacing: .04em; }

/* ── Business Page ──────────────────────────────────────────── */
.bp-section { padding: var(--py) var(--px); }
.bp-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5.5vw,88px); align-items: center; margin-top: clamp(40px,5vw,64px); }
.bp-split.rev { direction: rtl; }
.bp-split.rev > * { direction: ltr; }
.bp-img { height: clamp(300px,44vw,520px); overflow: hidden; }
.bp-img img { transition: transform 1.1s var(--expo); }
.bp-img:hover img { transform: scale(1.04); }
.bp-text h2, .bp-text h3 { font-family: var(--ff-serif); font-size: clamp(24px,2.8vw,38px); font-weight: 700; letter-spacing: .04em; margin-bottom: 18px; }
.bp-text p { font-size: 14px; color: var(--grey-1); line-height: 2.05; margin-bottom: 14px; }
.bp-features { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.bp-feature { display: flex; gap: 12px; font-size: 13px; color: var(--grey-1); }
.bp-feature::before { content: '—'; color: var(--orange); flex-shrink: 0; }
.bp-flow { background: var(--black-2); padding: var(--py) var(--px); }
.bp-flow-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.05); margin-top: clamp(40px,5vw,64px); }
.bp-step { background: var(--black-2); padding: clamp(28px,3.5vw,48px); }
.bp-step-num { font-family: var(--ff-en); font-size: clamp(52px,7vw,90px); font-weight: 900; color: rgba(192,152,72,.1); letter-spacing: -.04em; line-height: 1; margin-bottom: 16px; }
.bp-step-title { font-family: var(--ff-serif); font-size: clamp(16px,2vw,22px); font-weight: 700; letter-spacing: .04em; margin-bottom: 12px; }
.bp-step-text { font-size: 13px; color: var(--grey-1); line-height: 1.9; }
.bp-strengths { padding: var(--py) var(--px); }
.bp-str-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(255,255,255,.05); margin-top: clamp(40px,5vw,64px); }
.bp-str-item {
  background: var(--black); padding: clamp(28px,3.5vw,48px);
  border-top: 2px solid transparent;
  border-image: linear-gradient(to right, var(--gold-dk), var(--gold), var(--gold-hi), var(--gold), var(--gold-dk)) 1;
}
.bp-str-num { font-family: var(--ff-en); font-size: 11px; letter-spacing: .3em; color: var(--orange); margin-bottom: 12px; }
.bp-str-title { font-family: var(--ff-serif); font-size: clamp(18px,2.2vw,26px); font-weight: 700; letter-spacing: .04em; margin-bottom: 12px; }
.bp-str-text { font-size: 13px; color: var(--grey-1); line-height: 1.9; }

/* ═══════════════════════════════════════════════════════════════
   WORKS PAGE — Masonry Grid
════════════════════════════════════════════════════════════════ */
.wp-hero {
  position: relative; height: clamp(420px,58vh,700px);
  overflow: hidden; margin-top: var(--nav-h);
}
.wp-hero img { object-position: center 35%; transition: transform 14s ease; }
.wp-hero.in-view img { transform: scale(1.05); }
.wp-hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(7,7,7,.95) 0%, rgba(7,7,7,.5) 45%, rgba(7,7,7,.2) 100%),
    linear-gradient(108deg, rgba(7,7,7,.65) 0%, transparent 55%);
}
.wp-hero-body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 0 var(--px) clamp(44px,5.5vw,72px); }
.wp-hero-tag { font-family: var(--ff-en); font-size: 9px; letter-spacing: .4em; color: var(--orange); text-transform: uppercase; margin-bottom: 12px; }
.wp-hero-title { font-family: var(--ff-serif); font-size: clamp(32px,4.5vw,60px); font-weight: 700; letter-spacing: .04em; margin-bottom: 10px; }
.wp-hero-desc { font-size: 14px; color: var(--grey-1); letter-spacing: .06em; }

/* Filter */
.wp-filter-row { padding: clamp(28px,3.5vw,48px) var(--px) 0; display: flex; gap: 2px; flex-wrap: wrap; }
.wp-filter-btn { font-family: var(--ff-en); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; padding: 10px 20px; border: 1px solid rgba(255,255,255,.1); background: transparent; color: var(--grey-1); transition: border-color .3s, background .3s, color .3s; }
.wp-filter-btn.active, .wp-filter-btn:hover { border-color: var(--orange); background: var(--orange-dim); color: var(--white); }

/* Masonry grid */
.wp-masonry {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: var(--gap);
  padding: clamp(20px,2.5vw,36px) var(--px) var(--py);
}
.wp-m { position: relative; overflow: hidden; }
.wp-m img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--expo); }
.wp-m:hover img { transform: scale(1.06); }
.wp-m::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,7,7,.88) 0%, transparent 55%); opacity: 0; transition: opacity .4s; }
.wp-m:hover::after { opacity: 1; }
.wp-m-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 20px; z-index: 2; transform: translateY(6px); opacity: 0; transition: opacity .4s, transform .4s var(--expo); }
.wp-m:hover .wp-m-info { opacity: 1; transform: none; }
.wp-m-tag { font-family: var(--ff-en); font-size: 9px; letter-spacing: .35em; color: var(--orange); text-transform: uppercase; margin-bottom: 4px; }
.wp-m-name { font-size: 13px; font-weight: 700; letter-spacing: .05em; }
.wp-m.hidden { display: none; }

/* Masonry sizes */
.wp-m.s44 { grid-column: span 4; aspect-ratio: 4/3; }
.wp-m.s46 { grid-column: span 4; aspect-ratio: 3/4; }
.wp-m.s64 { grid-column: span 6; aspect-ratio: 4/3; }
.wp-m.s68 { grid-column: span 6; aspect-ratio: 2/3; }
.wp-m.s83 { grid-column: span 8; aspect-ratio: 16/9; }
.wp-m.s84 { grid-column: span 8; aspect-ratio: 4/3; }
.wp-m.sc4 { grid-column: span 4; aspect-ratio: 1; }
.wp-m.sc6 { grid-column: span 6; aspect-ratio: 1; }

/* ═══════════════════════════════════════════════════════════════
   RECRUIT PAGE — LP Level
════════════════════════════════════════════════════════════════ */
.rp-cinematic {
  position: relative; height: clamp(480px,80vh,860px);
  display: flex; align-items: flex-end; overflow: hidden;
  margin-top: var(--nav-h);
}
.rp-cinematic-bg { position: absolute; inset: 0; }
.rp-cinematic-bg img { object-position: center 25%; animation: heroKenBurns 14s ease-in-out infinite; }
@keyframes heroKenBurns { 0%,100%{transform:scale(1.04);transform-origin:55% 30%} 50%{transform:scale(1.07);transform-origin:48% 35%} }
.rp-cinematic-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(7,7,7,1) 0%, rgba(7,7,7,.72) 40%, rgba(7,7,7,.22) 70%, rgba(7,7,7,.4) 100%),
    linear-gradient(108deg, rgba(7,7,7,.68) 0%, transparent 55%);
}
.rp-cinematic-body { position: relative; z-index: 2; padding: 0 var(--px) clamp(56px,7vw,100px); max-width: 900px; }
.rp-cinematic-label { font-family: var(--ff-en); font-size: 9px; letter-spacing: .45em; color: var(--orange); text-transform: uppercase; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.rp-cinematic-label::before { content: ''; width: 28px; height: 1px; background: var(--orange); }
.rp-cinematic-h { font-family: var(--ff-serif); font-size: clamp(38px,7vw,100px); font-weight: 700; line-height: 1.08; letter-spacing: .02em; margin-bottom: 24px; }
.rp-cinematic-sub { font-size: clamp(14px,1.4vw,16px); color: var(--grey-1); line-height: 2.1; max-width: 480px; }

/* Why Progress */
.rp-why { padding: var(--py) var(--px); }
.rp-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,28px); margin-top: clamp(40px,5vw,64px); }
.rp-why-item { padding: clamp(24px,3vw,40px); border: 1px solid rgba(255,255,255,.06); background: var(--black-2); transition: border-color .3s, transform .3s var(--expo); }
.rp-why-item:hover { border-color: rgba(192,152,72,.22); transform: translateY(-4px); }
.rp-why-num { font-family: var(--ff-en); font-size: 10px; letter-spacing: .38em; color: var(--orange); margin-bottom: 14px; }
.rp-why-title { font-family: var(--ff-serif); font-size: clamp(16px,2vw,22px); font-weight: 700; letter-spacing: .04em; margin-bottom: 12px; }
.rp-why-text { font-size: 13px; color: var(--grey-1); line-height: 1.95; }

/* Positions */
.rp-positions { padding: var(--py) var(--px); background: var(--black-2); }
.rp-pos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: clamp(40px,5vw,64px); }
.rp-pos-card { background: var(--black-3); border: 1px solid rgba(255,255,255,.06); padding: clamp(28px,3.5vw,48px); position: relative; overflow: hidden; }
.rp-pos-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--expo); }
.rp-pos-card:hover::before { transform: scaleX(1); }
.rp-pos-type { font-family: var(--ff-en); font-size: 9px; letter-spacing: .4em; color: var(--orange); text-transform: uppercase; margin-bottom: 12px; }
.rp-pos-name { font-family: var(--ff-serif); font-size: clamp(22px,2.8vw,34px); font-weight: 700; letter-spacing: .04em; margin-bottom: 24px; }
.rp-pos-wage { font-family: var(--ff-en); font-size: clamp(40px,5vw,64px); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.rp-pos-wage-u { font-size: 14px; font-weight: 400; color: var(--grey-1); margin-left: 4px; }
.rp-pos-note { font-size: 11px; color: var(--grey-2); margin-top: 5px; margin-bottom: 22px; }
.rp-hr { border: none; border-top: 1px solid rgba(255,255,255,.06); margin: 18px 0; }
.rp-pos-specs { display: flex; flex-direction: column; gap: 8px; }
.rp-pos-spec { display: flex; gap: 14px; font-size: 13px; }
.rp-pos-spec-k { color: var(--grey-2); min-width: 64px; flex-shrink: 0; }
.rp-pos-spec-v { color: var(--grey-1); }

/* Day timeline */
.rp-day { padding: var(--py) var(--px); }
.rp-day-flow { display: flex; flex-direction: column; margin-top: clamp(40px,5vw,64px); border-left: 1px solid rgba(255,255,255,.08); padding-left: clamp(20px,3vw,40px); }
.rp-day-item { display: flex; gap: clamp(16px,2.5vw,36px); padding-bottom: clamp(24px,3vw,40px); position: relative; }
.rp-day-item::before { content: ''; position: absolute; left: calc(-1 * clamp(20px,3vw,40px) - 1px); top: 4px; width: 9px; height: 9px; border: 2px solid var(--orange); border-radius: 50%; background: var(--black); transform: translateX(-4px); }
.rp-day-time { font-family: var(--ff-en); font-size: 13px; font-weight: 600; color: var(--orange); min-width: 52px; flex-shrink: 0; letter-spacing: .04em; padding-top: 2px; }
.rp-day-content h4 { font-weight: 700; letter-spacing: .06em; margin-bottom: 5px; }
.rp-day-content p { font-size: 13px; color: var(--grey-1); line-height: 1.9; }

/* Persona */
.rp-persona { padding: var(--py) var(--px); background: var(--black-2); }
.rp-persona-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: clamp(40px,5vw,64px); }
.rp-persona-item { display: flex; align-items: flex-start; gap: 16px; padding: clamp(18px,2.5vw,32px); border: 1px solid rgba(255,255,255,.06); }
.rp-persona-idx { font-family: var(--ff-en); font-size: 32px; font-weight: 900; color: rgba(192,152,72,.15); line-height: 1; flex-shrink: 0; }
.rp-persona-text h4 { font-family: var(--ff-serif); font-size: 15px; font-weight: 700; letter-spacing: .04em; margin-bottom: 6px; }
.rp-persona-text p { font-size: 13px; color: var(--grey-1); line-height: 1.9; }
.rp-apply { padding: var(--py) var(--px); text-align: center; }
.rp-apply h2 { font-family: var(--ff-serif); font-size: clamp(28px,4vw,52px); font-weight: 700; letter-spacing: .04em; margin-bottom: 20px; }
.rp-apply p { font-size: 15px; color: var(--grey-1); line-height: 2; max-width: 500px; margin: 0 auto 36px; }

/* ── Contact Page ───────────────────────────────────────────── */
.cp-tabs { display: flex; gap: 2px; margin-top: clamp(32px,4vw,56px); flex-wrap: wrap; }
.cp-tab { font-family: var(--ff-sans); font-size: 12px; letter-spacing: .06em; padding: 12px 22px; border: 1px solid rgba(255,255,255,.1); background: transparent; color: var(--grey-2); transition: border-color .3s, background .3s, color .3s; }
.cp-tab.active { border-color: var(--orange); background: var(--orange-dim); color: var(--white); }
.cp-panel { display: none; }
.cp-panel.active { display: block; }
.cp-panel-intro { font-size: 14px; color: var(--grey-1); line-height: 2; margin: clamp(22px,3vw,38px) 0; max-width: 560px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .wp-masonry { grid-template-columns: repeat(6,1fr); }
  .wp-m.s44 { grid-column: span 3; }
  .wp-m.s46 { grid-column: span 3; }
  .wp-m.s64 { grid-column: span 3; }
  .wp-m.s68 { grid-column: span 3; }
  .wp-m.s83 { grid-column: span 6; }
  .wp-m.s84 { grid-column: span 6; }
  .wp-m.sc4 { grid-column: span 3; }
  .wp-m.sc6 { grid-column: span 3; }
  #system { grid-template-columns: 1fr; }
  .sys-body { padding-bottom: 0; }
  .sys-ui { transform: none !important; }
}
@media (max-width: 1024px) {
  #safety { grid-template-columns: 1fr; }
  .safety-img { height: 50vh; min-height: 300px; }
  #system { min-height: auto; }
  .msg-grid { grid-template-columns: 1fr; }
  .msg-img-inner { height: 44vw; min-height: 280px; }
  .co-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; }
  .bp-flow-grid { grid-template-columns: 1fr; }
  .bp-str-grid { grid-template-columns: 1fr; }
  .rp-why-grid { grid-template-columns: 1fr 1fr; }
  .cgp-showcase { grid-template-columns: 1fr; }
  .cgp-identity { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
}
@media (max-width: 768px) {
  :root { --px: 20px; --py: 60px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-vert { display: none; }
  .hero-title { font-size: clamp(40px,11vw,72px); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); }
  .biz-grid { grid-template-columns: 1fr; }
  .biz-card.b2 { border-left: none; border-top: 1px solid rgba(255,255,255,.05); }
  .biz-card { min-height: clamp(320px,55vw,500px); }
  .rp-grid { grid-template-columns: 1fr; }
  .ct-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ft-nav { grid-template-columns: 1fr 1fr; }
  .stmt-layout { grid-template-columns: 1fr; }
  .stmt-cols { grid-template-columns: 1fr; }
  .bp-split { grid-template-columns: 1fr; }
  .bp-split.rev { direction: ltr; }
  .rp-pos-grid { grid-column: span 1 !important; grid-template-columns: 1fr; }
  .rp-persona-grid { grid-template-columns: 1fr; }
  .rp-why-grid { grid-template-columns: 1fr; }
  .wp-masonry { grid-template-columns: 1fr 1fr; }
  .cgp-showcase { grid-template-columns: 1fr; }
  .cgp-identity { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .sys-module-grid { grid-template-columns: 1fr; }
  .sys-phone { display: none; }
  .ft-cta { flex-direction: column; align-items: flex-start; }
  .msg-pull { display: block; }
  .msg-grid { grid-template-columns: 1fr; padding: 0 var(--px) clamp(52px,7vw,96px); }
  .msg-sig { flex-direction: column; align-items: flex-start; }
  .wp-m.s44,.wp-m.s46,.wp-m.s64,.wp-m.s68,.wp-m.s83,.wp-m.s84,.wp-m.sc4,.wp-m.sc6 { grid-column: span 1; aspect-ratio: 4/3; }
  .sns-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .rp-pos-grid { grid-template-columns: 1fr; }
  .rp-cinematic-h { font-size: clamp(40px,12vw,72px); }
}
@media (max-width: 400px) {
  .ci-title { font-size: 58px; }
  .hero-title { font-size: clamp(36px,10vw,52px); }
}
