/* ============================================
   Popaism corporate site — style.css
   ============================================ */

:root {
  --jade:      #00C896;
  --jade-dark: #00A87C;
  --dark:      #0C1810;
  --yellow:    #FFE200;
  --red:       #FF3D2E;
  --white:     #FFFFFF;
  --offwhite:  #F9F9F7;
  --gray:      #6B7280;
  --gray-light:#E5E7EB;
}

/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans JP', 'Inter', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }


/* ============================================
   1. NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,200,150,0.15);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.nav.nav-scrolled {
  box-shadow: 0 4px 24px rgba(12,24,16,0.06);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo-img {
  height: calc(1cap + 4px);
  width: auto;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
}
.nav-logo {
  font-family: 'Teko', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--jade); }

.btn-cta {
  background: var(--jade);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-cta:hover {
  background: var(--jade-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,200,150,0.35);
}


/* ============================================
   2. HERO
   ============================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background: var(--white);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-content { max-width: 800px; }

.hero-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--jade);
  margin-bottom: 28px;
  padding: 8px 18px;
  border: 1px solid rgba(0,200,150,0.35);
  border-radius: 100px;
  background: rgba(0,200,150,0.06);
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 28px;
  animation: hero-fade-in 0.85s ease-out 0.15s both;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--jade) 0%, #00E0B0 60%, var(--yellow) 130%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-size: 17px;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 540px;
  animation: hero-fade-in 0.6s ease-out 0.55s both;
}

.hero-cta > * {
  animation: hero-fade-in 0.5s ease-out both;
}
.hero-cta > *:nth-child(1) { animation-delay: 0.9s; }
.hero-cta > *:nth-child(2) { animation-delay: 1.0s; }
.hero-cta > *:nth-child(3) { animation-delay: 1.1s; }

.hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--dark);
  color: var(--white);
  padding: 18px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary:hover {
  background: #1a2820;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(12,24,16,0.28);
}
.btn-link {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  border-bottom: 2px solid var(--jade);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-link:hover { color: var(--jade); }

/* Decorative circles */
.hero-circle {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--jade), var(--yellow) 55%, transparent 75%);
  opacity: 0.18;
  z-index: 1;
  filter: blur(4px);
}
.hero-circle-outline {
  position: absolute;
  right: 8%;
  top: 30%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 2px solid rgba(0,200,150,0.28);
  z-index: 1;
}
.hero-circle-small {
  position: absolute;
  right: 35%;
  bottom: 20%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.5;
  z-index: 1;
  filter: blur(2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--gray);
  border-radius: 13px;
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--jade);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scroll-dot 1.8s infinite;
}
@keyframes scroll-dot {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { opacity: 0; }
  100% { transform: translateY(18px); opacity: 0; }
}


/* ============================================
   3. COUNTER BAR
   ============================================ */
.counter-bar {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0;
}
.counter-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.counter-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.counter-item:last-child { border-right: none; }
.counter-value {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1;
  color: var(--jade);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.counter-number, .counter-static {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  color: var(--jade);
}
.counter-unit {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.counter-label {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.06em;
}


/* ============================================
   4. INDUSTRY TICKER
   ============================================ */
.ticker-wrapper {
  overflow: hidden;
  background: var(--jade);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-item {
  white-space: nowrap;
  padding: 0 32px;
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.06em;
  position: relative;
}
.ticker-item::after {
  content: '/';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================
   Section header (shared)
   ============================================ */
.section-header {
  margin-bottom: 72px;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--jade);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--dark);
}
.section-title-light { color: var(--white); }
.section-lead {
  margin-top: 20px;
  font-size: 16px;
  color: var(--gray);
  font-weight: 500;
}


/* ============================================
   5. SERVICES
   ============================================ */
.services-section { background: var(--offwhite); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0,200,150,0.15);
  border-radius: 16px;
  padding: 48px 32px 40px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--jade), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,200,150,0.18);
  border-color: rgba(0,200,150,0.4);
}
.service-card:hover::before { transform: scaleX(1); }

.service-number {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: rgba(0,200,150,0.16);
  line-height: 1;
}
.service-icon {
  width: 64px;
  height: 64px;
  display: block;
  margin-bottom: 22px;
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon {
  transform: rotate(-4deg) scale(1.05);
}
.service-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 4px;
  color: var(--dark);
}
.service-en {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--jade);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.service-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.85;
}


/* ============================================
   6. PHILOSOPHY (P.O.P.A.I + ism)
   Editorial layout — oversized letters + zigzag
   ============================================ */
.philosophy-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.philosophy-section::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.14), transparent 70%);
  pointer-events: none;
}
.philosophy-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,226,0,0.06), transparent 70%);
  pointer-events: none;
}
.philosophy-acronym {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  background: linear-gradient(135deg, var(--jade), #00E0B0 60%, var(--yellow));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.02em;
}
.philosophy-plus {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.5em;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0;
  margin-left: 12px;
  vertical-align: 0.18em;
}

.philosophy-list {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.philosophy-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.philosophy-item:last-child { border-bottom: none; }

/* Zigzag: even rows flip the letter to the right */
.philosophy-item:nth-child(even) {
  grid-template-columns: 1fr 240px;
}
.philosophy-item:nth-child(even) .philosophy-letter {
  order: 2;
  text-align: right;
}
.philosophy-item:nth-child(even) .philosophy-content {
  order: 1;
  text-align: right;
}

.philosophy-letter {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(140px, 16vw, 220px);
  line-height: 0.85;
  color: var(--jade);
  letter-spacing: -0.06em;
  user-select: none;
  text-shadow: 0 0 60px rgba(0,200,150,0.35);
}

.philosophy-en {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--jade);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.philosophy-jp {
  font-family: 'Noto Serif JP', 'Noto Sans JP', serif;
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.45;
  letter-spacing: 0.005em;
}
.philosophy-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.95;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
}
.philosophy-item:nth-child(even) .philosophy-desc {
  margin-left: auto;
}


/* ============================================
   7. COMPANY DECK
   ============================================ */
.deck-section { background: var(--offwhite); }
.deck-wrapper { max-width: 1040px; margin: 0 auto; }
.deck-card {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 56px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(0,200,150,0.18);
  border-radius: 16px;
  padding: 48px 56px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}
.deck-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at top right, rgba(255,226,0,0.16), transparent 70%);
  pointer-events: none;
}
.deck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(0,200,150,0.18);
  border-color: var(--jade);
}
.deck-card-visual {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(12,24,16,0.18), 0 4px 12px rgba(12,24,16,0.08);
  transform: translateZ(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.deck-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid rgba(12,24,16,0.06);
  pointer-events: none;
}
.deck-card:hover .deck-card-visual {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 28px 64px rgba(12,24,16,0.22), 0 6px 16px rgba(12,24,16,0.1);
}
.deck-cover-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.deck-card-content { position: relative; z-index: 1; }
.deck-card-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--jade);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.deck-card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.4;
}
.deck-card-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 26px;
}
.deck-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
  color: var(--dark);
  border-bottom: 2px solid var(--jade);
  padding-bottom: 4px;
  transition: color 0.2s, gap 0.2s;
}
.deck-card:hover .deck-card-cta {
  color: var(--jade);
  gap: 12px;
}


/* ============================================
   8. PROCESS
   ============================================ */
.process-section { background: var(--white); }
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-list::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 40px;
  right: calc(25% - 64px);
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(0,200,150,0.45) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 0 8px;
  text-align: left;
}
.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--jade);
  color: var(--jade);
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0,200,150,0.15);
}
.process-step-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.5;
}
.process-step-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 16px;
}
.process-step-time {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--jade);
  background: rgba(0,200,150,0.08);
  padding: 4px 10px;
  border-radius: 100px;
}


/* ============================================
   9. RESULTS
   ============================================ */
.results-section { background: var(--offwhite); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(0,200,150,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,200,150,0.14);
}
.result-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.result-tag {
  background: var(--jade);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.result-period {
  background: rgba(0,200,150,0.1);
  color: var(--jade);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.result-quote {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}
.result-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
}


/* ============================================
   10. TEAM
   ============================================ */
.team-section { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.team-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 40px;
  background: var(--offwhite);
  border-radius: 16px;
  border: 1px solid rgba(0,200,150,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,200,150,0.12);
}
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  border: 3px solid var(--jade);
  flex-shrink: 0;
  background: var(--white);
}
.team-info { flex: 1; min-width: 0; }
.team-badge {
  display: inline-block;
  background: var(--jade);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}
.team-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.4;
}
.team-name-en {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.team-role {
  font-size: 13px;
  font-weight: 700;
  color: var(--jade);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.team-bio {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 16px;
}
.team-bio-stat {
  font-size: 13px;
  color: var(--dark);
  background: rgba(0,200,150,0.06);
  border-left: 3px solid var(--jade);
  padding: 12px 16px;
  border-radius: 4px;
  line-height: 1.75;
}
.team-skills {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.7;
}
.team-skills strong {
  display: block;
  color: var(--jade);
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 4px;
  text-transform: uppercase;
}


/* ============================================
   11. CTA
   ============================================ */
.cta-section {
  background: var(--jade);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.cta-blob {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 65%);
  opacity: 0.35;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.cta-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.8vw, 50px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.3;
}
.cta-sub {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  line-height: 1.95;
  margin-bottom: 48px;
}
.btn-cta-large {
  background: var(--white);
  color: var(--jade);
  font-size: 18px;
  font-weight: 800;
  padding: 22px 52px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.2);
}


/* ============================================
   12. FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-img {
  height: calc(1cap + 4px);
  width: auto;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-logo {
  font-family: 'Teko', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.85;
}
.footer-info dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px 24px;
  font-size: 14px;
}
.footer-info dt {
  color: var(--jade);
  font-weight: 700;
}
.footer-info dd { line-height: 1.7; }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.04em;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .section { padding: 96px 0; }
  .nav-inner { padding: 16px 32px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-item,
  .philosophy-item:nth-child(even) {
    grid-template-columns: 200px 1fr;
    gap: 32px;
  }
  .philosophy-item:nth-child(even) .philosophy-letter { order: 0; text-align: left; }
  .philosophy-item:nth-child(even) .philosophy-content { order: 0; text-align: left; }
  .philosophy-item:nth-child(even) .philosophy-desc { margin-left: 0; }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
  .process-list::before { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-circle { width: 500px; height: 500px; right: -20%; }
  .hero-circle-outline { width: 280px; height: 280px; right: 4%; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  .nav-link { display: none; }
  .nav-links { gap: 0; }

  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-inner { padding: 0 20px; }
  .hero-circle { width: 360px; height: 360px; right: -40%; opacity: 0.13; }
  .hero-circle-outline { display: none; }
  .hero-circle-small { display: none; }
  .hero-sub { font-size: 15px; line-height: 1.85; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 16px; }
  .btn-primary { justify-content: center; }
  .btn-link { text-align: center; }
  .hero-scroll { display: none; }

  .counter-bar { padding: 48px 0; }
  .counter-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .counter-item { border-right: none; }
  .counter-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .counter-item:last-child {
    grid-column: 1 / -1;
    border-right: none;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .ticker-item { font-size: 14px; padding: 0 22px; }

  .section-header { margin-bottom: 48px; }
  .service-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; gap: 28px; }
  .process-step-num { width: 56px; height: 56px; font-size: 18px; }

  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }

  .deck-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    text-align: left;
  }
  .deck-card-cta { justify-content: flex-start; }

  .philosophy-item,
  .philosophy-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 40px 0;
  }
  .philosophy-letter { font-size: 110px; line-height: 0.9; }
  .philosophy-jp { font-size: 22px; }
  .philosophy-acronym { display: inline-block; }
  .philosophy-plus { display: block; margin-left: 0; margin-top: 8px; font-size: 0.45em; }

  .cta-section { padding: 80px 0; }
  .btn-cta-large {
    width: 100%;
    justify-content: center;
    padding: 20px 32px;
    font-size: 16px;
  }

  .footer { padding: 60px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .footer-info dl { grid-template-columns: 80px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track { animation: none !important; }
}
